diff options
chore: mention it's services both managed by the neobot verein and this one
Diffstat (limited to 'src/routes/canaries')
| -rw-r--r-- | src/routes/canaries/canaries.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/routes/canaries/canaries.ts b/src/routes/canaries/canaries.ts index dab2e68..e628377 100644 --- a/src/routes/canaries/canaries.ts +++ b/src/routes/canaries/canaries.ts @@ -1,5 +1,5 @@ import { browser } from '$app/environment'; -import { base } from '$app/paths'; +import { base, resolve } from '$app/paths'; import { validateSignature } from './keystore'; export const canaries: Canary[] = []; @@ -12,7 +12,7 @@ export interface CanaryInterface { contentType: string; upstream?: string; } -export interface Canary extends CanaryInterface {} +export interface Canary extends CanaryInterface { } type _PreCanaryInterfaceEntries = { [T in keyof CanaryInterface]: [T, CanaryInterface[T]]; }; @@ -72,9 +72,9 @@ ${await res.text().catch((e) => `Unknown (Unable to get text, ${JSON.stringify(e } new Canary({ name: 'estrogen.zone', - description: 'Services hosted around estrogen.zone and yuridick.gay', + description: 'Services hosted by the Neobot Verein, aswell as personally by memdmp.', signer: 'memdmp', - url: base + '/canaries/memdmp:estrogen.zone', + url: resolve('/canaries/memdmp:estrogen.zone' as '/'), keyIdentifier: 'memdmp', contentType: 'text/plain; charset=utf-8', }); |