From fe279587b59df8a63856b1ec3b357e16a16ad7e5 Mon Sep 17 00:00:00 2001 From: Riley Davis Date: Wed, 10 May 2017 09:25:39 -0600 Subject: [PATCH] add staff to dropdown --- client/coral-admin/src/containers/Community/Table.js | 1 + models/user.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/client/coral-admin/src/containers/Community/Table.js b/client/coral-admin/src/containers/Community/Table.js index aacc9c82f..2924e7fd3 100644 --- a/client/coral-admin/src/containers/Community/Table.js +++ b/client/coral-admin/src/containers/Community/Table.js @@ -65,6 +65,7 @@ class Table extends Component { label={lang.t('community.role')} onChange={role => this.onRoleChange(row.id, role)}> + diff --git a/models/user.js b/models/user.js index 458ac68f0..ec215b3fa 100644 --- a/models/user.js +++ b/models/user.js @@ -5,7 +5,8 @@ const uuid = require('uuid'); // USER_ROLES is the array of roles that is permissible as a user role. const USER_ROLES = [ 'ADMIN', - 'MODERATOR' + 'MODERATOR', + 'STAFF' ]; // USER_STATUS is the list of statuses that are permitted for the user status.