Added 'SyncFail' to possible HookTypes in UI (#2153)

This commit is contained in:
Simon Behar 2019-08-14 14:29:15 -07:00 committed by Alex Collins
parent 9a2e7ca190
commit e94999b07d

View file

@ -61,7 +61,7 @@ export interface OperationState {
finishedAt: models.Time;
}
export type HookType = 'PreSync' | 'Sync' | 'PostSync' | 'Skip';
export type HookType = 'PreSync' | 'Sync' | 'PostSync' | 'SyncFail' | 'Skip';
export interface RevisionMetadata {
author: string;