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 +1 -1
- package/src/config.ts +0 -2
- package/src/render/layout.ts +0 -1
- package/src/views/issueThread.ts +0 -1
package/package.json
CHANGED
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"),
|
package/src/render/layout.ts
CHANGED
package/src/views/issueThread.ts
CHANGED
|
@@ -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("")
|