feat: remove email rate limit configuration from environment and database schema

This commit is contained in:
Daniel Volz
2025-12-25 13:24:25 +01:00
parent 55dd9bbff5
commit aa87a65d31
3 changed files with 0 additions and 5 deletions
-1
View File
@@ -51,7 +51,6 @@ export const settings = sqliteTable("settings", {
smtpPassEncrypted: text("smtp_pass_encrypted"),
smtpFrom: text("smtp_from"),
smtpSecure: integer("smtp_secure", { mode: "boolean" }).notNull().default(false),
emailsPerDay: integer("emails_per_day").notNull().default(3),
// Email notification settings
emailEnabled: integer("email_enabled", { mode: "boolean" }).notNull().default(false),
notificationEmail: text("notification_email"),