10 lines
206 B
Python
10 lines
206 B
Python
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")
|