mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-10 05:23:09 +00:00
- Backend: Rust/Axum with PostgreSQL, plugin architecture - Frontend: Astro with polished UI - Voting methods: Approval, Ranked Choice, Schulze, STAR, Quadratic - Features: Liquid delegation, transparent moderation, structured deliberation - Documentation: User and admin guides in /docs - Deployment: Docker/Podman compose files for production and demo - Demo: Seeded data with 3 communities, 13 users, 7 proposals License: AGPLv3
88 lines
2 KiB
JSON
88 lines
2 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT \n id, template_id, name, phase_type::text AS \"phase_type!\",\n sequence_order, description, default_duration_hours,\n quorum_type, quorum_value::float8 AS \"quorum_value!\",\n allow_early_completion, auto_advance, phase_config\n FROM workflow_phases\n WHERE template_id = $1\n ORDER BY sequence_order",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "id",
|
|
"type_info": "Uuid"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "template_id",
|
|
"type_info": "Uuid"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "name",
|
|
"type_info": "Varchar"
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "phase_type!",
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"ordinal": 4,
|
|
"name": "sequence_order",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 5,
|
|
"name": "description",
|
|
"type_info": "Text"
|
|
},
|
|
{
|
|
"ordinal": 6,
|
|
"name": "default_duration_hours",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 7,
|
|
"name": "quorum_type",
|
|
"type_info": "Varchar"
|
|
},
|
|
{
|
|
"ordinal": 8,
|
|
"name": "quorum_value!",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 9,
|
|
"name": "allow_early_completion",
|
|
"type_info": "Bool"
|
|
},
|
|
{
|
|
"ordinal": 10,
|
|
"name": "auto_advance",
|
|
"type_info": "Bool"
|
|
},
|
|
{
|
|
"ordinal": 11,
|
|
"name": "phase_config",
|
|
"type_info": "Jsonb"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
false,
|
|
null,
|
|
false,
|
|
true,
|
|
false,
|
|
false,
|
|
null,
|
|
false,
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "faf3d877c077b20211fe2cbf92c54322660147ab31fe5036e3e722725c2e3e44"
|
|
}
|