1
0
Fork 0
mirror of synced 2024-06-22 16:10:40 +12:00

Type updates for app backups work in pro + linting.

This commit is contained in:
mike12345567 2022-10-03 11:56:31 +01:00
parent 230a667817
commit 12a0af23c2
3 changed files with 11 additions and 0 deletions

View file

@ -3,3 +3,4 @@ export * from "./user"
export * from "./userGroup"
export * from "./plugin"
export * from "./quotas"
export * from "./schedules"

View file

@ -0,0 +1,9 @@
export enum ScheduleType {
APP_BACKUP = "app_backup",
}
export enum ScheduleRepeatPeriod {
DAILY = "daily",
WEEKLY = "weekly",
MONTHLY = "monthly",
}

View file

@ -1,3 +1,4 @@
export enum Feature {
USER_GROUPS = "userGroups",
APP_BACKUPS = "appBackups",
}