dynamic plugin system, toast notifications, board delete, gitea-sync plugin rewrite, granular locking fixes

This commit is contained in:
2026-03-21 19:26:35 +02:00
parent a8ac768e3f
commit d52088a88b
37 changed files with 1653 additions and 48 deletions

View File

@@ -0,0 +1,22 @@
{
"name": "gitea-sync",
"version": "1.0.0",
"description": "Syncs public repositories from a Gitea instance as feedback boards",
"author": "echoboard",
"entryPoint": "index.js",
"configSchema": [
{
"key": "profileUrl",
"type": "text",
"label": "Gitea profile URL",
"placeholder": "https://git.example.com/username",
"required": true
},
{
"key": "token",
"type": "password",
"label": "API token",
"placeholder": "Leave empty for public repos only"
}
]
}