P5-703 add support for categories

This commit is contained in:
Martin
2016-06-03 16:32:18 +02:00
parent 672305dee6
commit 7109c7bde5
10 changed files with 177 additions and 7 deletions
+2 -1
View File
@@ -17,8 +17,9 @@ db = SQLAlchemy(app)
# eSales
esales = Cluster(app.config.get("ESALES_URL"))
from api.views import designers
from api.views import designers, categories
app.register_blueprint(designers.mod)
app.register_blueprint(categories.mod)
def check_authentication():