Add a security page and link it from the landing page and footer.

This commit is contained in:
yackob03 2013-11-22 15:54:23 -05:00
parent 650348fc03
commit b00f58d164
6 changed files with 66 additions and 11 deletions

View file

@ -100,11 +100,18 @@ def new():
def repository():
return index('')
@app.route('/security/')
def security():
return index('')
@app.route('/v1')
@app.route('/v1/')
def v1():
return index('')
@app.route('/status', methods=['GET'])
def status():
return make_response('Healthy')