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
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n SELECT p.id, p.title, p.status as \"status: String\", p.created_at, c.slug as community_slug\n FROM proposals p\n JOIN communities c ON p.community_id = c.id\n WHERE c.is_active = true\n ORDER BY p.created_at DESC\n LIMIT 10\n ",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "id",
|
|
"type_info": "Uuid"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "title",
|
|
"type_info": "Varchar"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "status: String",
|
|
"type_info": {
|
|
"Custom": {
|
|
"name": "proposal_status",
|
|
"kind": {
|
|
"Enum": [
|
|
"draft",
|
|
"discussion",
|
|
"voting",
|
|
"closed",
|
|
"archived",
|
|
"calculating"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "created_at",
|
|
"type_info": "Timestamptz"
|
|
},
|
|
{
|
|
"ordinal": 4,
|
|
"name": "community_slug",
|
|
"type_info": "Varchar"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": []
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "2a288385b0b4f402803e22171965bedeeb6e40308d09f4a0d4f67258b11f7cd2"
|
|
}
|