Start on controllers and the API for organizations. Also adds fake model methods
This commit is contained in:
parent
621f89f826
commit
d7148b1711
5 changed files with 99 additions and 3 deletions
|
@ -43,6 +43,7 @@ def load_user(username):
|
|||
|
||||
@app.route('/', methods=['GET'], defaults={'path': ''})
|
||||
@app.route('/repository/<path:path>', methods=['GET'])
|
||||
@app.route('/organization/<path:path>', methods=['GET'])
|
||||
def index(path):
|
||||
return render_template('index.html')
|
||||
|
||||
|
|
Reference in a new issue