From 2c0e17cb977a1e8782799b337df8b1583d019906 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 22:36:01 +0200 Subject: bootstraping react --- pyaggr3g470r/views/api/category.py | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 pyaggr3g470r/views/api/category.py (limited to 'pyaggr3g470r/views/api/category.py') diff --git a/pyaggr3g470r/views/api/category.py b/pyaggr3g470r/views/api/category.py deleted file mode 100644 index 31f46751..00000000 --- a/pyaggr3g470r/views/api/category.py +++ /dev/null @@ -1,31 +0,0 @@ -from flask import g - -from pyaggr3g470r.controllers.category import CategoryController -from pyaggr3g470r.views.api.common import (PyAggResourceNew, - PyAggResourceExisting, - PyAggResourceMulti) - - -CAT_ATTRS = {'name': {'type': str}, - 'user_id': {'type': int}} - - -class CategoryNewAPI(PyAggResourceNew): - controller_cls = CategoryController - attrs = CAT_ATTRS - - -class CategoryAPI(PyAggResourceExisting): - controller_cls = CategoryController - attrs = CAT_ATTRS - - -class CategoriesAPI(PyAggResourceMulti): - controller_cls = CategoryController - attrs = CAT_ATTRS - - -g.api.add_resource(CategoryNewAPI, '/category', endpoint='category_new.json') -g.api.add_resource(CategoryAPI, '/category/', - endpoint='category.json') -g.api.add_resource(CategoriesAPI, '/categories', endpoint='categories.json') -- cgit