feat: 已添加配方通知联动
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 3s
PR Preview / test (pull_request) Successful in 4s
PR Preview / deploy-preview (pull_request) Successful in 16s
Test / e2e-test (push) Failing after 52s

- 点击"已添加"后:
  1. 标记所有同标题通知为已读(其他编辑者不用重复处理)
  2. 通知其他管理员/高级编辑"已有人添加,无需重复处理"
  3. 通知原始搜索用户"你搜索的配方已添加"
- 新增 /api/notifications/{id}/added 端点

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-10 19:38:57 +00:00
parent 4ae756c214
commit caa795c2d4
2 changed files with 51 additions and 1 deletions

View File

@@ -141,7 +141,13 @@ function isReviewable(n) {
}
async function markAdded(n) {
await markOneRead(n)
try {
await api(`/api/notifications/${n.id}/added`, { method: 'POST' })
n.is_read = 1
ui.showToast('已标记,已通知相关人员')
} catch {
await markOneRead(n)
}
}
function goReview(n) {