Add a security page and link it from the landing page and footer.
This commit is contained in:
parent
650348fc03
commit
b00f58d164
6 changed files with 66 additions and 11 deletions
|
@ -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')
|
||||
|
|
Reference in a new issue