mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 13:23:41 -05:00
add crosspost page route
This commit is contained in:
parent
bdc61c31bc
commit
d00d987a0c
1 changed files with 5 additions and 0 deletions
5
app.py
5
app.py
|
@ -276,6 +276,11 @@ def information():
|
|||
def accessibility():
|
||||
return render_template('admin/categories/accessibility.html')
|
||||
|
||||
@admin_bp.route('/crosspost/', methods=['GET', 'POST'])
|
||||
@loginRequired
|
||||
def crosspost():
|
||||
return render_template('admin/categories/crosspost.html')
|
||||
|
||||
@admin_bp.route('/languages/', methods=['GET', 'POST'])
|
||||
@loginRequired
|
||||
def languages():
|
||||
|
|
Loading…
Add table
Reference in a new issue