Introduce tenant-scoped Space/SpaceMembership with list and detail views. Document markdown-in-Forgejo as content SoR (ADR-0002). Run migrations on container start so app.coulomb.social picks up the new tables.
9 lines
151 B
Python
9 lines
151 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "spaces"
|
|
|
|
urlpatterns = [
|
|
path("<slug:slug>/", views.space_detail, name="detail"),
|
|
]
|