예제 #1
0
def index():
    g.user = get_current_user()

    # Admin checking
    if g.user and not g.user.is_admin and not request.path == "/public_key":
        return redirect("/public_key")
    return render_template('index.html')
예제 #2
0
 def user(self):
     return get_current_user()
예제 #3
0
def index():
    g.user = get_current_user()
    return render_template('index.html')
예제 #4
0
파일: __init__.py 프로젝트: qinxiaoapp/vinz
 def user(self):
     return get_current_user()