Skip to content

Commit

Permalink
Add missing bulk.js...
Browse files Browse the repository at this point in the history
  • Loading branch information
olovy committed Oct 29, 2024
1 parent ad2f9a3 commit 87e2a3f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cataloging/src/utils/bulk.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export const STATUS_KEY = 'bulk:status';
export const MATCH_FORM_KEY = 'bulk:matchForm';
export const SHOULD_UPDATE_TIMESTAMP_KEY = 'bulk:shouldUpdateModifiedTimestamp';
export const CHANGE_SPEC_KEY = 'bulk:changeSpec';
export const TARGET_FORM_KEY = 'bulk:targetForm';
export const JOB_TYPE = 'bulk:Job';

export class Status {
static Draft = 'bulk:Draft';
static Ready = 'bulk:Ready';
static Running = 'bulk:Running';
static Failed = 'bulk:Failed';
static Completed = 'bulk:Completed';
}

0 comments on commit 87e2a3f

Please sign in to comment.