ework-web 0.10.46 → 0.10.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ework-web",
3
- "version": "0.10.46",
3
+ "version": "0.10.47",
4
4
  "type": "module",
5
5
  "description": "ework-web — standalone multi-project issue tracker. Local SQLite-backed, no external API dependency. Bun + TypeScript + SSR HTML.",
6
6
  "license": "MIT",
package/src/config.ts CHANGED
@@ -82,7 +82,6 @@ export const configSchema = z.object({
82
82
  internalAuthHook: z.string().default(""),
83
83
  userAuthHook: z.string().default(""),
84
84
  loginPage: z.string().default(""),
85
- statusHook: z.string().default(""),
86
85
  // Default "provider/model" string passed to `opencode run --model <X>`.
87
86
  // Empty = let opencode pick per its own opencode.json + env. ework-daemon
88
87
  // pushes this (or the per-project override) on every spawn to defend
@@ -193,7 +192,6 @@ export async function loadConfig(): Promise<Config> {
193
192
  internalAuthHook: process.env.WORK_INTERNAL_AUTH_HOOK ?? "",
194
193
  userAuthHook: process.env.WORK_USER_AUTH_HOOK ?? "",
195
194
  loginPage: process.env.WORK_LOGIN_PAGE ?? "",
196
- statusHook: process.env.WORK_STATUS_HOOK ?? "",
197
195
  defaultModel: db.defaultModel ?? process.env.WORK_DEFAULT_MODEL,
198
196
  autowireActive: process.env.WORK_AUTOWIRE_ACTIVE !== "false",
199
197
  webhookMaxConcurrent: Number(process.env.WORK_WEBHOOK_MAX_CONCURRENT ?? "6"),
@@ -17,7 +17,6 @@ export interface LayoutProps {
17
17
  labels?: { id: number; name: string; color: string }[];
18
18
  canEditLabels?: boolean;
19
19
  aiStatus?: string;
20
- statusHook?: string;
21
20
  }
22
21
 
23
22
  export const THEME_CSS = `
@@ -131,7 +131,6 @@ export async function buildIssueThread(
131
131
  labels: labels.map((l) => ({ id: l.id, name: l.name, color: l.color })),
132
132
  canEditLabels: cfg.writesEnabled !== false,
133
133
  aiStatus: issue.ai_status ?? "",
134
- statusHook: cfg.statusHook ?? "",
135
134
  },
136
135
  safeJsonEmbed(payload),
137
136
  displayViews.map((v) => renderCommentCard(v, cfg)).join("")