feat: put thread page behind /thread route

This commit is contained in:
ayo 2026-03-09 16:59:48 +01:00
parent 6e57c0fa92
commit d151375d63

View file

@ -179,7 +179,7 @@ async def tag(id):
return render_template('_tag.html', threads=statuses, tag=id, app=app, attribution=attribution, render_date=datetime.now())
@threads.route('/<path:id>')
@threads.route('/thread/<path:id>')
@cache.cached(timeout=300)
def thread(id):
attribution = get_attribution()