feat: implement governed wiki vertical slice
Module Package Release / publish-packages (push) Successful in 12s

This commit is contained in:
2026-08-22 13:08:12 +02:00
parent 572cb91dce
commit 66c91351c9
24 changed files with 4934 additions and 84 deletions
+17
View File
@@ -0,0 +1,17 @@
"""Wiki persistence models."""
from govoplan_wiki.backend.db.models import (
WikiComment,
WikiPage,
WikiPageRevision,
WikiSpace,
WikiSpaceHistory,
)
__all__ = [
"WikiComment",
"WikiPage",
"WikiPageRevision",
"WikiSpace",
"WikiSpaceHistory",
]