thread page mostly finished
This commit is contained in:
@@ -13,3 +13,15 @@ def new_topic():
|
||||
@bp.get('/topics/sort')
|
||||
def sort_topics():
|
||||
return 'stub'
|
||||
|
||||
@bp.post('/threads/<int:thread_id>/move')
|
||||
def move_thread(thread_id):
|
||||
return 'stub'
|
||||
|
||||
@bp.post('/threads/<int:thread_id>/lock')
|
||||
def lock_thread(thread_id):
|
||||
return 'stub'
|
||||
|
||||
@bp.post('/threads/<int:thread_id>/sticky')
|
||||
def sticky_thread(thread_id):
|
||||
return 'stub'
|
||||
|
||||
Reference in New Issue
Block a user