diff --git a/src/main/angular/angular.json b/src/main/angular/angular.json index 3802de1..3371ea6 100644 --- a/src/main/angular/angular.json +++ b/src/main/angular/angular.json @@ -125,5 +125,8 @@ } } } + }, + "cli": { + "analytics": false } } diff --git a/src/main/angular/src/app/api/schedule/entry/ScheduleEntry.ts b/src/main/angular/src/app/api/schedule/entry/ScheduleEntry.ts index 6cc3154..64670eb 100644 --- a/src/main/angular/src/app/api/schedule/entry/ScheduleEntry.ts +++ b/src/main/angular/src/app/api/schedule/entry/ScheduleEntry.ts @@ -1,4 +1,4 @@ -import {validateBooleanNotNull, validateDateAllowNull, validateNumberNotNull, validateStringNotEmptyNotNull} from "../../validators"; +import {validateBooleanNotNull, validateDateAllowNull, validateNumberAllowNull, validateNumberNotNull, validateStringNotEmptyNotNull} from "../../validators"; import {Timestamp} from "../../Timestamp"; import {Property} from "../../property/Property"; import {Bulk} from "../../bulk/Bulk"; @@ -26,6 +26,7 @@ export class ScheduleEntry { readonly minute: number, readonly second: number, readonly fuzzySeconds: number, + readonly skip: number, readonly lastClearTimestamp: Timestamp | null, readonly nextClearTimestamp: Timestamp | null, readonly nextFuzzyTimestamp: Timestamp | null, @@ -55,6 +56,7 @@ export class ScheduleEntry { validateNumberNotNull(json['minute']), validateNumberNotNull(json['second']), validateNumberNotNull(json['fuzzySeconds']), + validateNumberAllowNull(json['skip']) || 0, Timestamp.fromDateOrNull(validateDateAllowNull(json['lastClearTimestamp'])), Timestamp.fromDateOrNull(validateDateAllowNull(json['nextClearTimestamp'])), Timestamp.fromDateOrNull(validateDateAllowNull(json['nextFuzzyTimestamp'])), diff --git a/src/main/angular/src/app/pages/schedule/list/schedule-list.component.html b/src/main/angular/src/app/pages/schedule/list/schedule-list.component.html index 0df5a4a..f91d950 100644 --- a/src/main/angular/src/app/pages/schedule/list/schedule-list.component.html +++ b/src/main/angular/src/app/pages/schedule/list/schedule-list.component.html @@ -6,13 +6,18 @@