2 Commits
v0.1.7 ... main

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

View File

@@ -1,5 +1,9 @@
# GovOPlaN Helpdesk
<!-- govoplan-repository-type:start -->
**Repository type:** module (domain).
<!-- govoplan-repository-type:end -->
`govoplan-helpdesk` is the GovOPlaN platform module seed for internal service desk workflows for IT, facilities, HR, finance, procurement, access requests, assignment, escalation, and resolution tracking.
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.
@@ -26,7 +30,7 @@ Detailed boundary notes are in [docs/HELPDESK_DOMAIN_BOUNDARY.md](docs/HELPDESK_
Expected optional integrations:
- issue-reporting
- issue_reporting
- assets
- facilities
- mail
@@ -59,5 +63,5 @@ From the core checkout, labels can be synced once a local `GITEA_TOKEN` is avail
```bash
cd /mnt/DATA/git/govoplan-core
./scripts/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-helpdesk --apply
/mnt/DATA/git/govoplan/tools/gitea/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-helpdesk --apply
```

View File

@@ -20,7 +20,7 @@ Internal service desk workflows for IT, facilities, HR, finance, procurement, ac
## Integration Candidates
- issue-reporting
- issue_reporting
- assets
- facilities
- mail

View File

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

View File

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

View File

@@ -5,12 +5,12 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo
MODULE_ID = "helpdesk"
MODULE_NAME = "Helpdesk"
MODULE_VERSION = "0.1.7"
MODULE_VERSION = "0.1.8"
READ_SCOPE = "helpdesk:workspace:read"
WRITE_SCOPE = "helpdesk:workspace:write"
ADMIN_SCOPE = "helpdesk:workspace:admin"
OPTIONAL_DEPENDENCIES = (
"issue-reporting",
"issue_reporting",
"assets",
"facilities",
"mail",