mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
Allow admins to promote curators
This commit is contained in:
parent
705e8dba6e
commit
ef3e861fc3
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ const selectCanRemoveCurator = (state, username) => {
|
|||
};
|
||||
const selectCanRemoveManager = (state, managerId) =>
|
||||
!selectIsMuted(state) && (selectIsAdmin(state) || isManager(state)) && managerId !== state.studio.host;
|
||||
const selectCanPromoteCurators = state => !selectIsMuted(state) && isManager(state);
|
||||
const selectCanPromoteCurators = state => !selectIsMuted(state) && (isManager(state) || selectIsAdmin(state));
|
||||
|
||||
const selectCanTransfer = (state, managerId) => {
|
||||
// Nobody can transfer a class studio.
|
||||
|
|
|
@ -344,7 +344,7 @@ describe('studio members', () => {
|
|||
|
||||
describe('can promote curators', () => {
|
||||
test.each([
|
||||
['admin', false],
|
||||
['admin', true],
|
||||
['curator', false],
|
||||
['manager', true],
|
||||
['creator', true],
|
||||
|
|
Loading…
Reference in a new issue