start porting some topics stuff
This commit is contained in:
7
app/routes/threads.py
Normal file
7
app/routes/threads.py
Normal file
@ -0,0 +1,7 @@
|
||||
from flask import Blueprint, render_template
|
||||
|
||||
bp = Blueprint("topics", __name__, url_prefix = "/threads/")
|
||||
|
||||
@bp.get("/<slug>")
|
||||
def thread(slug):
|
||||
return slug
|
Reference in New Issue
Block a user