(feat): add custom ttp urls
All checks were successful
/ deploy (push) Successful in 14m48s

(qol): update todo
This commit is contained in:
Alois 2026-05-11 14:36:12 +02:00
commit 3225b4e652
5 changed files with 82 additions and 21 deletions

View file

@ -244,6 +244,7 @@ export interface Storage extends SettingsStorageDefaults {
legal_docs: z.infer<typeof legalDocsSchema>;
cached_contacts: Contacts;
cached_communities: Communities;
ttp_url: string;
}
export const storageDefaults: Storage = {
@ -276,4 +277,5 @@ export const storageDefaults: Storage = {
},
cached_contacts: [],
cached_communities: [],
ttp_url: "https://tensamin.net:959",
};