@ttahub/common 1.1.6 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +2 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -115,12 +115,14 @@ const TRAINING_REPORT_STATUSES = {
|
|
|
115
115
|
NOT_STARTED: 'Not started',
|
|
116
116
|
IN_PROGRESS: 'In progress',
|
|
117
117
|
COMPLETE: 'Complete',
|
|
118
|
+
SUSPENDED: 'Suspended',
|
|
118
119
|
};
|
|
119
120
|
exports.TRAINING_REPORT_STATUSES = TRAINING_REPORT_STATUSES;
|
|
120
121
|
|
|
121
122
|
const TRAINING_REPORT_STATUSES_URL_PARAMS = {
|
|
122
123
|
'not-started': TRAINING_REPORT_STATUSES.NOT_STARTED,
|
|
123
124
|
'in-progress': TRAINING_REPORT_STATUSES.IN_PROGRESS,
|
|
125
|
+
suspended: TRAINING_REPORT_STATUSES.SUSPENDED,
|
|
124
126
|
complete: TRAINING_REPORT_STATUSES.COMPLETE,
|
|
125
127
|
};
|
|
126
128
|
|