예제 #1
0
파일: auth.py 프로젝트: nandittiku/MyMusic
def handler(message):
    """
    Handler if the user is not logged in.
    """
    h.flash(
        "You can not access that page. Make sure you are logged in. You need to be facebook friends with "
        + config.get("name") + " to listen to music.")
    redirect(url(controller='about', action='index'))
예제 #2
0
파일: auth.py 프로젝트: nandittiku/MyMusic
def adminhandler(message):
    """
    Handler if the user is not admin.
    """
    h.flash("You need to be the admin to change settings.")
    redirect(url(controller='about', action='index'))