24 lines
482 B
Python
24 lines
482 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# @Author : jeffzhang
|
|
# @Time : 18-5-10
|
|
# @File : index.py
|
|
# @Desc : ""
|
|
|
|
from flask import Blueprint, redirect, url_for
|
|
from fuxi.views.authenticate import login_check
|
|
|
|
index = Blueprint('index', __name__)
|
|
|
|
|
|
@index.route('/index')
|
|
@login_check
|
|
def view_index():
|
|
return redirect(url_for('dashboard.view_dashboard'))
|
|
|
|
|
|
@index.route('/')
|
|
@login_check
|
|
def view_base():
|
|
return redirect(url_for('dashboard.view_dashboard'))
|