コード例 #1
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def tags(tag=None):
    if not tag:
        from core.database import get_tag_count
        return render_template(f'{session["view_mode"]}/tags.html',
                               tag_count=get_tag_count())
    else:
        from routes import tag as run
        return run.route(tag)
コード例 #2
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def user(viewuser=None):
    from routes import user as run
    return run.route(viewuser)
コード例 #3
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def search():
    from routes import search as run
    return run.route()
コード例 #4
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def submit(post_id=None):
    from routes import submit as run
    return run.route(post_id)
コード例 #5
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def invite(code=None):
    from routes import invite as run
    return run.route(code)
コード例 #6
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def forgot():
    from routes import forgot as run
    return run.route()
コード例 #7
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def index():
    from routes import index as run
    return run.route()
コード例 #8
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def login():
    from routes import login as run
    return run.route()
コード例 #9
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def remove(post_id=0):
    from routes import post as run
    return run.route('delete', post_id)
コード例 #10
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def change_password():
    from routes import password as run
    return run.route()
コード例 #11
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def report(post_id=0):
    from routes import post as run
    return run.route('report', post_id)
コード例 #12
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def upvote(post_id=0):
    from routes import post as run
    return run.route('upvote', post_id)
コード例 #13
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def subscribe(viewuser=None):
    from routes import rss as run
    return run.route(viewuser)
コード例 #14
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def top():
    from routes import toprecent as run
    from core.database import get_all_top_posts
    return run.route(get_all_top_posts(), 'top')
コード例 #15
0
ファイル: router.py プロジェクト: Ullarah/TrashLinks
def recent():
    from routes import toprecent as run
    from core.database import get_all_recent_updated_posts
    return run.route(get_all_recent_updated_posts(), 'recent')