thread page mostly finished
This commit is contained in:
7
app/routes/posts.py
Normal file
7
app/routes/posts.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from flask import Blueprint
|
||||
|
||||
bp = Blueprint('posts', __name__, url_prefix='/posts/')
|
||||
|
||||
@bp.get('/<int:post_id>/edit')
|
||||
def edit(post_id):
|
||||
return 'stub'
|
||||
Reference in New Issue
Block a user