coulomb-social/coulomb_social/apps/core/urls.py
tegwick 422cd613f6 Add app home Spaces shell and session diagnostics profile menu
Post-login lands on Spaces empty state instead of a principal dump.
Profile menu exposes Session details with identity, tenant, roles/groups,
and authz diagnostics for operator refinement (CSOC-WP-0004 T01/T07).
2026-08-11 02:31:55 +02:00

11 lines
261 B
Python

from django.urls import path
from . import views
app_name = "core"
urlpatterns = [
path("", views.landing, name="landing"),
path("app/", views.app_home, name="app_home"),
path("account/session/", views.account_session, name="account_session"),
]