Exosphere is a set of small, modular, self-hostable community tools built on the AT Protocol. app.exosphere.site
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: rename labels lexicon

Hugo dbb8d773 206bad36

+4 -4
+1 -1
packages/core/src/generated/lexicon-records.ts
··· 162 162 "site.exosphere.kanban.entry": KanbanEntryRecord; 163 163 "site.exosphere.kanban.permissions": KanbanPermissionsRecord; 164 164 "site.exosphere.kanban.status": KanbanStatusRecord; 165 - "site.exosphere.label": LabelRecord; 165 + "site.exosphere.sphere.label": LabelRecord; 166 166 "site.exosphere.moderation": ModerationRecord; 167 167 "site.exosphere.sphere.member": SphereMemberRecord; 168 168 "site.exosphere.sphere.memberApproval": SphereMemberApprovalRecord;
+1 -1
packages/core/src/sphere/indexer.ts
··· 17 17 const MEMBER_COLLECTION = "site.exosphere.sphere.member"; 18 18 const APPROVAL_COLLECTION = "site.exosphere.sphere.memberApproval"; 19 19 const MODERATION_COLLECTION = "site.exosphere.moderation"; 20 - const LABEL_COLLECTION = "site.exosphere.label"; 20 + const LABEL_COLLECTION = "site.exosphere.sphere.label"; 21 21 22 22 /** Build the core indexer dynamically — includes permission collections from registered modules. */ 23 23 export function createCoreIndexer(): ModuleIndexer {
+1 -1
packages/feature-requests/src/api/requests.ts
··· 24 24 } from "@exosphere/core/sphere"; 25 25 26 26 const COLLECTION = "site.exosphere.featureRequest.entry"; 27 - const LABEL_COLLECTION = "site.exosphere.label"; 27 + const LABEL_COLLECTION = "site.exosphere.sphere.label"; 28 28 const MODERATION_COLLECTION = "site.exosphere.moderation"; 29 29 30 30 const app = new Hono<AuthEnv & SphereEnv>();
+1 -1
packages/kanban/src/api/tasks.ts
··· 35 35 } from "@exosphere/core/sphere"; 36 36 37 37 const COLLECTION = "site.exosphere.kanban.entry"; 38 - const LABEL_COLLECTION = "site.exosphere.label"; 38 + const LABEL_COLLECTION = "site.exosphere.sphere.label"; 39 39 const STATUS_COLLECTION = "site.exosphere.kanban.status"; 40 40 const MODERATION_COLLECTION = "site.exosphere.moderation"; 41 41