Phase 13 : sogoms-cron
- Jobs planifiés avec schedule cron standard
- Types: query_email, http, service
- Actions: list, trigger, status
Phase 16 : Réorganisation config/apps/{app}/
- Tous les fichiers d'une app dans un seul dossier
- Migration prokov vers nouvelle structure
Phase 17 : sogoms-admin
- Interface web d'administration (Go templates + htmx)
- Auth sessions cookies signées HMAC-SHA256
- Rôles super_admin / app_admin avec permissions
Phase 19 : Création d'app via Admin UI
- Formulaire création app avec config DB/auth
- Bouton "Scanner la base" : introspection + schema.yaml
- Rechargement automatique sogoway via SIGHUP
Infrastructure :
- sogoctl : socket de contrôle /run/sogoctl.sock
- sogoway : reload config sur SIGHUP sans restart
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
# Requêtes CRUD tasks
|
|
|
|
list:
|
|
query: >
|
|
SELECT id, project_id, status_id, title, description, priority,
|
|
date_start, date_end, time_estimated, time_spent, billing, position,
|
|
created_at, updated_at
|
|
FROM tasks
|
|
filters:
|
|
default: "user_id = :user_id"
|
|
admin: ""
|
|
order: "position ASC"
|
|
|
|
list_by_project:
|
|
query: >
|
|
SELECT id, project_id, status_id, title, description, priority,
|
|
date_start, date_end, time_estimated, time_spent, billing, position,
|
|
created_at, updated_at
|
|
FROM tasks WHERE project_id = :project_id
|
|
filters:
|
|
default: "user_id = :user_id"
|
|
admin: ""
|
|
order: "position ASC"
|
|
|
|
show:
|
|
query: >
|
|
SELECT id, project_id, status_id, title, description, priority,
|
|
date_start, date_end, time_estimated, time_spent, billing, position,
|
|
created_at, updated_at
|
|
FROM tasks WHERE id = :id
|
|
filters:
|
|
default: "user_id = :user_id"
|
|
admin: ""
|
|
|
|
create:
|
|
table: tasks
|
|
fields:
|
|
- user_id
|
|
- project_id
|
|
- status_id
|
|
- title
|
|
- description
|
|
- priority
|
|
- date_start
|
|
- date_end
|
|
- time_estimated
|
|
- time_spent
|
|
- billing
|
|
- position
|
|
|
|
update:
|
|
table: tasks
|
|
fields:
|
|
- project_id
|
|
- status_id
|
|
- title
|
|
- description
|
|
- priority
|
|
- date_start
|
|
- date_end
|
|
- time_estimated
|
|
- time_spent
|
|
- billing
|
|
- position
|
|
filters:
|
|
default: "user_id = :user_id"
|
|
admin: ""
|
|
|
|
delete:
|
|
table: tasks
|
|
filters:
|
|
default: "user_id = :user_id"
|
|
admin: ""
|