Type updates for app backups work in pro + linting.
This commit is contained in:
parent
230a667817
commit
12a0af23c2
|
@ -3,3 +3,4 @@ export * from "./user"
|
||||||
export * from "./userGroup"
|
export * from "./userGroup"
|
||||||
export * from "./plugin"
|
export * from "./plugin"
|
||||||
export * from "./quotas"
|
export * from "./quotas"
|
||||||
|
export * from "./schedules"
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
export enum ScheduleType {
|
||||||
|
APP_BACKUP = "app_backup",
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum ScheduleRepeatPeriod {
|
||||||
|
DAILY = "daily",
|
||||||
|
WEEKLY = "weekly",
|
||||||
|
MONTHLY = "monthly",
|
||||||
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
export enum Feature {
|
export enum Feature {
|
||||||
USER_GROUPS = "userGroups",
|
USER_GROUPS = "userGroups",
|
||||||
|
APP_BACKUPS = "appBackups",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue