- Resolve decisions.md merge conflict (keep both Codex boundary + Ezra/Bezalel entries) - Update .gitignore: protect bare secret files, exclude venvs and nexus-localhost - Add uniwizard tools (mention watcher, adaptive prompt router, self-grader, classifiers) - Add briefings, good-morning reports, production reports - Add evennia world scaffold and training data - Add angband and morrowind MCP servers - Add diagrams, specs, test results, overnight loop scripts - Add twitter archive insights and media metadata - Add wizard workspaces (allegro, nahshon)
21 lines
519 B
Python
21 lines
519 B
Python
"""
|
|
This reroutes from an URL to a python view-function/class.
|
|
|
|
The main web/urls.py includes these routes for all urls starting with `admin/`
|
|
(the `admin/` part should not be included again here).
|
|
|
|
"""
|
|
|
|
from django.urls import path
|
|
|
|
from evennia.web.admin.urls import urlpatterns as evennia_admin_urlpatterns
|
|
|
|
# add patterns here
|
|
urlpatterns = [
|
|
# path("url-pattern", imported_python_view),
|
|
# path("url-pattern", imported_python_view),
|
|
]
|
|
|
|
# read by Django
|
|
urlpatterns = urlpatterns + evennia_admin_urlpatterns
|