feat: add admin links management and updaterup page

- Implemented AdminLinksPage for managing link entries with admin role check.
- Created API routes for fetching, updating, and deleting link entries.
- Added ProductTabs component for navigation between Backerup and Updaterup.
- Developed UpdaterupPage with detailed features, setup instructions, and statistics.
- Introduced links database functionality for runtime-editable link overrides.
This commit is contained in:
Anders Böttcher
2026-05-13 10:53:21 +02:00
parent 33e339bde6
commit 984b282a95
16 changed files with 1342 additions and 51 deletions
+6
View File
@@ -26,6 +26,12 @@ export const LINKS = {
dockerImage: "gitea.doomlabs.de/kptltd00m/backerup:latest",
/** Default UI port the container exposes */
uiPort: "8080",
// ── Updaterup ─────────────────────────────────────────────
/** Updaterup repository root */
updaterupGitea: "https://gitea.doomlabs.de/KptltD00M/updaterup",
/** Updaterup Docker image reference */
updaterupDockerImage: "gitea.doomlabs.de/kptltd00m/updaterup:latest",
} as const;
export type Links = typeof LINKS;