add staff to dropdown

This commit is contained in:
Riley Davis
2017-05-10 09:25:39 -06:00
parent 87bc3e0a72
commit fe279587b5
2 changed files with 3 additions and 1 deletions
@@ -65,6 +65,7 @@ class Table extends Component {
label={lang.t('community.role')}
onChange={role => this.onRoleChange(row.id, role)}>
<Option value={''}>.</Option>
<Option value={'STAFF'}>{lang.t('community.staff')}</Option>
<Option value={'MODERATOR'}>{lang.t('community.moderator')}</Option>
<Option value={'ADMIN'}>{lang.t('community.admin')}</Option>
</SelectField>
+2 -1
View File
@@ -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.