Initial Commit

This commit is contained in:
2025-11-27 00:00:50 +00:00
commit b7e68a9057
43 changed files with 3445 additions and 0 deletions

View 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")