Merge pull request #517 from dod-ccpo/hide-requests

hide requests workflow
This commit is contained in:
montana-mil
2019-01-10 14:57:59 -05:00
committed by GitHub
9 changed files with 18 additions and 45 deletions

View File

@@ -64,9 +64,10 @@ def make_app(config):
make_error_pages(app)
app.register_blueprint(bp)
app.register_blueprint(workspace_routes)
app.register_blueprint(requests_bp)
app.register_blueprint(task_orders_bp)
app.register_blueprint(user_routes)
app.register_blueprint(requests_bp)
if ENV != "prod":
app.register_blueprint(dev_routes)