feat: store options in cookies
TS Lint / Oxlint (push) Successful in 44s
TS Lint / TypeScript (push) Successful in 49s
TS Lint / ESLint (push) Successful in 52s

This commit is contained in:
2026-07-12 17:46:21 +02:00
parent d21a829f6b
commit d969b9e21b
4 changed files with 74 additions and 20 deletions
+11 -11
View File
@@ -1,16 +1,16 @@
export enum CronType {
ONE_TIME = 1,
EVERY_DAY = 2,
EVERY_WEEK = 3,
EVERY_MONTH = 4,
EVERY_YEAR = 5,
SPECIFIC = 6,
ONE_TIME,
EVERY_DAY,
EVERY_WEEK,
EVERY_MONTH,
EVERY_YEAR,
SPECIFIC,
}
export enum SortType {
CREATED_AT = 1,
UPDATED_AT = 2,
CHECK_DATE = 3,
RESET_DATE = 4,
NAME = 5,
CREATED_AT,
UPDATED_AT,
CHECK_DATE,
RESET_DATE,
NAME,
}