Decoupling audit: remove events API, update shared submodule
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 3m30s

- Delete events_api.py (dead internal API endpoint)
- Remove registration from app.py
- Update shared submodule

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-20 11:15:33 +00:00
parent 44d089ced4
commit 13064c3772
3 changed files with 1 additions and 203 deletions

4
app.py
View File

@@ -128,10 +128,6 @@ def create_app() -> "Quart":
from bp.ticket_admin.routes import register as register_ticket_admin
app.register_blueprint(register_ticket_admin())
# Internal API (server-to-server, CSRF-exempt)
from events_api import register as register_events_api
app.register_blueprint(register_events_api())
return app