@ttahub/common 2.0.16 → 2.0.17
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/constants.js +7 -3
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -183,9 +183,6 @@ const USER_ROLES = [
|
|
|
183
183
|
'Grantee Specialist',
|
|
184
184
|
'Health Specialist',
|
|
185
185
|
'System Specialist',
|
|
186
|
-
'Interim Management Team',
|
|
187
|
-
'Integrated Service Team',
|
|
188
|
-
'Grants Management Specialist',
|
|
189
186
|
];
|
|
190
187
|
exports.USER_ROLES = USER_ROLES;
|
|
191
188
|
|
|
@@ -326,3 +323,10 @@ const EVENT_AUDIENCE = [
|
|
|
326
323
|
];
|
|
327
324
|
|
|
328
325
|
exports.EVENT_AUDIENCE = EVENT_AUDIENCE;
|
|
326
|
+
|
|
327
|
+
const GROUP_SHARED_WITH = {
|
|
328
|
+
EVERYONE: 'Everyone',
|
|
329
|
+
INDIVIDUALS: 'Individuals',
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
exports.GROUP_SHARED_WITH = GROUP_SHARED_WITH;
|