feat: Implement Donation URL

This commit is contained in:
Nila The Dragon 2024-01-09 21:32:47 +01:00
parent d974b30e56
commit 9ceb74b98d
No known key found for this signature in database
16 changed files with 87 additions and 9 deletions

View file

@ -4631,6 +4631,7 @@ export type operations = {
description: string | null;
disableRegistration: boolean;
impressumUrl: string | null;
donationUrl: string | null;
maintainerEmail: string | null;
maintainerName: string | null;
name: string | null;
@ -8650,6 +8651,7 @@ export type operations = {
repositoryUrl?: string;
feedbackUrl?: string;
impressumUrl?: string | null;
donationUrl?: string | null;
privacyPolicyUrl?: string | null;
useObjectStorage?: boolean;
objectStorageBaseUrl?: string | null;
@ -19400,6 +19402,7 @@ export type operations = {
};
backgroundImageUrl: string | null;
impressumUrl: string | null;
donationUrl: string | null;
logoImageUrl: string | null;
privacyPolicyUrl: string | null;
serverRules: string[];