mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-09 13:03:10 +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
22 lines
750 B
JSON
22 lines
750 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT COALESCE(\n (SELECT vm.name FROM community_voting_methods cvm \n JOIN voting_method_plugins vm ON vm.id = cvm.voting_method_id\n WHERE cvm.community_id = $1 AND cvm.is_default = true\n LIMIT 1),\n (SELECT name FROM voting_method_plugins WHERE is_default = true LIMIT 1),\n 'approval'\n ) as \"method!\"",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "method!",
|
|
"type_info": "Varchar"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
null
|
|
]
|
|
},
|
|
"hash": "3e7754fe4fe21c7fc50435ad222ed68617f8e8c4f2a21b202ee95d6f76ae0d32"
|
|
}
|