2 Commits
v0.1.7 ... main

Author SHA1 Message Date
821245448d fix(manifest): normalize optional module ids 2026-07-20 20:01:50 +02:00
4cafe8af48 Release v0.1.8 2026-07-11 16:49:03 +02:00
5 changed files with 13 additions and 9 deletions

View File

@@ -1,5 +1,9 @@
# GovOPlaN Permits # GovOPlaN Permits
<!-- govoplan-repository-type:start -->
**Repository type:** module (domain).
<!-- govoplan-repository-type:end -->
`govoplan-permits` is the GovOPlaN platform module seed for permit and license workflows for applications, renewals, conditions, inspections, objections, revocations, and compliance evidence. `govoplan-permits` is the GovOPlaN platform module seed for permit and license workflows for applications, renewals, conditions, inspections, objections, revocations, and compliance evidence.
This repository is initialized as a discoverable module seed. It exposes a module manifest, initial permissions, role templates, documentation metadata, Gitea workflow templates, and a focused manifest test. It intentionally does not yet add HTTP routes, database models, migrations, or WebUI navigation. This repository is initialized as a discoverable module seed. It exposes a module manifest, initial permissions, role templates, documentation metadata, Gitea workflow templates, and a focused manifest test. It intentionally does not yet add HTTP routes, database models, migrations, or WebUI navigation.
@@ -30,7 +34,7 @@ Expected optional integrations:
- cases - cases
- inspections - inspections
- forms-runtime - forms_runtime
- files - files
- portal - portal
- certificates - certificates
@@ -60,5 +64,5 @@ From the core checkout, labels can be synced once a local `GITEA_TOKEN` is avail
```bash ```bash
cd /mnt/DATA/git/govoplan-core cd /mnt/DATA/git/govoplan-core
./scripts/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-permits --apply /mnt/DATA/git/govoplan/tools/gitea/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-permits --apply
``` ```

View File

@@ -24,7 +24,7 @@ Permit and license workflows for applications, renewals, conditions, inspections
- cases - cases
- inspections - inspections
- forms-runtime - forms_runtime
- files - files
- portal - portal
- certificates - certificates

View File

@@ -1,6 +1,6 @@
{ {
"name": "@govoplan/permits", "name": "@govoplan/permits",
"version": "0.1.7", "version": "0.1.8",
"private": true, "private": true,
"description": "GovOPlaN Permits platform module seed.", "description": "GovOPlaN Permits platform module seed.",
"type": "module", "type": "module",

View File

@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "govoplan-permits" name = "govoplan-permits"
version = "0.1.7" version = "0.1.8"
description = "GovOPlaN Permits platform module seed." description = "GovOPlaN Permits platform module seed."
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"
license = { file = "LICENSE" } license = { file = "LICENSE" }
authors = [{ name = "GovOPlaN" }] authors = [{ name = "GovOPlaN" }]
dependencies = [ dependencies = [
"govoplan-core>=0.1.7", "govoplan-core>=0.1.8",
"govoplan-access>=0.1.7", "govoplan-access>=0.1.8",
] ]
[tool.setuptools.packages.find] [tool.setuptools.packages.find]

View File

@@ -5,14 +5,14 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo
MODULE_ID = "permits" MODULE_ID = "permits"
MODULE_NAME = "Permits" MODULE_NAME = "Permits"
MODULE_VERSION = "0.1.7" MODULE_VERSION = "0.1.8"
READ_SCOPE = "permits:workspace:read" READ_SCOPE = "permits:workspace:read"
WRITE_SCOPE = "permits:workspace:write" WRITE_SCOPE = "permits:workspace:write"
ADMIN_SCOPE = "permits:workspace:admin" ADMIN_SCOPE = "permits:workspace:admin"
OPTIONAL_DEPENDENCIES = ( OPTIONAL_DEPENDENCIES = (
"cases", "cases",
"inspections", "inspections",
"forms-runtime", "forms_runtime",
"files", "files",
"portal", "portal",
"certificates", "certificates",