aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/canaries/canaries.ts
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2026-02-05 15:00:36 +0100
committerLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2026-02-05 15:00:36 +0100
commit9ea96ec1b18934529e28a0ca2a3080ac25622688 (patch)
treeade70cd3b3ba2069bdd8e6717454cd92a8540789 /src/routes/canaries/canaries.ts
parent4f085e8ebe904e2fb391ca26ce1f0b9fc947326a (diff)
downloadmem-estrogen-zone-9ea96ec1b18934529e28a0ca2a3080ac25622688.tar.gz
mem-estrogen-zone-9ea96ec1b18934529e28a0ca2a3080ac25622688.tar.bz2
mem-estrogen-zone-9ea96ec1b18934529e28a0ca2a3080ac25622688.tar.lz
mem-estrogen-zone-9ea96ec1b18934529e28a0ca2a3080ac25622688.zip

chore: mention it's services both managed by the neobot verein and this one

Diffstat (limited to 'src/routes/canaries/canaries.ts')
-rw-r--r--src/routes/canaries/canaries.ts8
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',
});