Initial Commit
This commit is contained in:
9
modules/publish/routes.py
Normal file
9
modules/publish/routes.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from flask import render_template
|
||||
from . import publish_bp
|
||||
from core.auth import require_perms
|
||||
|
||||
|
||||
@publish_bp.get("/")
|
||||
@require_perms("publish.use")
|
||||
def index():
|
||||
return render_template("publish/index.html")
|
||||
Reference in New Issue
Block a user