mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 18:10:39 +09:00
Wire up Better Auth for session-based authentication. Add actor middleware that resolves local_trusted mode to an implicit board actor and authenticated mode to Better Auth sessions. Add access service with membership, permission, invite, and join-request management. Register access routes for member/invite/ join-request CRUD. Update health endpoint to report deployment mode and bootstrap status. Enforce tasks:assign and agents:create permissions in issue and agent routes. Add deployment mode validation at startup with guardrails (loopback-only for local_trusted, auth config required for authenticated). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
1,008 B
TypeScript
18 lines
1,008 B
TypeScript
export { companyService } from "./companies.js";
|
|
export { agentService } from "./agents.js";
|
|
export { assetService } from "./assets.js";
|
|
export { projectService } from "./projects.js";
|
|
export { issueService, type IssueFilters } from "./issues.js";
|
|
export { issueApprovalService } from "./issue-approvals.js";
|
|
export { goalService } from "./goals.js";
|
|
export { activityService, type ActivityFilters } from "./activity.js";
|
|
export { approvalService } from "./approvals.js";
|
|
export { secretService } from "./secrets.js";
|
|
export { costService } from "./costs.js";
|
|
export { heartbeatService } from "./heartbeat.js";
|
|
export { dashboardService } from "./dashboard.js";
|
|
export { sidebarBadgeService } from "./sidebar-badges.js";
|
|
export { accessService } from "./access.js";
|
|
export { logActivity, type LogActivityInput } from "./activity-log.js";
|
|
export { publishLiveEvent, subscribeCompanyLiveEvents } from "./live-events.js";
|
|
export { createStorageServiceFromConfig, getStorageService } from "../storage/index.js";
|