Support resources with kind:30023 articles

This commit is contained in:
dtonon 2026-05-19 15:14:53 +01:00
parent f6bea700f0
commit b901215e1a
13 changed files with 285 additions and 75 deletions

View file

@ -11,11 +11,15 @@ export type GroupMetadata = {
};
let group = $state<GroupMetadata | null>(null);
let loaded = $state(false);
export const groupStore = {
get data() {
return group;
},
get loaded() {
return loaded;
},
};
export async function loadGroup() {
@ -40,6 +44,7 @@ export async function loadGroup() {
admins,
};
} finally {
loaded = true;
pool.close([RELAY_URL]);
}
}