Fix admin login and add subscription popup settings
Some checks failed
docker-images / build-and-push (admin, admin, termi-astro-admin, admin/Dockerfile) (push) Failing after 6s
docker-images / build-and-push (backend, backend, termi-astro-backend, backend/Dockerfile) (push) Failing after 5s
docker-images / build-and-push (frontend, frontend, termi-astro-frontend, frontend/Dockerfile) (push) Failing after 6s

This commit is contained in:
2026-04-01 00:05:16 +08:00
parent 350262c910
commit 660b255700
19 changed files with 1096 additions and 32 deletions

View File

@@ -11,8 +11,8 @@ const api = createApiClient({ requestUrl: Astro.url });
const apiBaseUrl = resolvePublicApiBaseUrl(Astro.url);
const EVENT_OPTIONS = [
{ value: 'post.published', label: '新文章通知' },
{ value: 'digest.weekly', label: '周报 Digest' },
{ value: 'digest.monthly', label: '月报 Digest' },
{ value: 'digest.weekly', label: '每周简报' },
{ value: 'digest.monthly', label: '每月简报' },
{ value: 'comment.created', label: '评论通知' },
{ value: 'friend_link.created', label: '友链申请通知' },
] as const;