fix: remove optional TOTP_SECRET from environment bindings

This commit is contained in:
shuaiplus
2026-05-23 02:07:59 +08:00
parent 385a873e65
commit 970621c459
-1
View File
@@ -10,7 +10,6 @@ export interface Env {
// Optional fallback for attachment/send file storage (no credit card required). // Optional fallback for attachment/send file storage (no credit card required).
ATTACHMENTS_KV?: KVNamespace; ATTACHMENTS_KV?: KVNamespace;
JWT_SECRET: string; JWT_SECRET: string;
TOTP_SECRET?: string;
} }
export type UserRole = 'admin' | 'user'; export type UserRole = 'admin' | 'user';