thread page mostly finished

This commit is contained in:
2026-04-15 23:11:24 +03:00
parent 7db111d18b
commit d0daaf4494
13 changed files with 330 additions and 21 deletions

View File

@@ -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'