mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
9 lines
170 B
Python
9 lines
170 B
Python
|
from flask.ext.login import login_required
|
||
|
from wowfunding.factory import app, db_session
|
||
|
|
||
|
|
||
|
@app.route('/admin/index')
|
||
|
@login_required
|
||
|
def admin_home():
|
||
|
return 'yep'
|