Add optional external Gitea URL for UI links

This commit is contained in:
Arunavo Ray
2026-02-24 10:33:30 +05:30
parent b1ca8c46bf
commit ef13fefb69
11 changed files with 45 additions and 8 deletions

View File

@@ -35,6 +35,7 @@ export const githubConfigSchema = z.object({
export const giteaConfigSchema = z.object({
url: z.url(),
externalUrl: z.url().optional(),
token: z.string(),
defaultOwner: z.string(),
organization: z.string().optional(),