You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Change to object literal
This commit is contained in:
12
src/Roles.js
12
src/Roles.js
@@ -16,12 +16,12 @@ limitations under the License.
|
||||
import { _t } from './languageHandler';
|
||||
|
||||
export function levelRoleMap() {
|
||||
const LEVEL_ROLE_MAP = {};
|
||||
LEVEL_ROLE_MAP[undefined] = _t('Default');
|
||||
LEVEL_ROLE_MAP[0] = _t('User');
|
||||
LEVEL_ROLE_MAP[50] = _t('Moderator');
|
||||
LEVEL_ROLE_MAP[100] = _t('Admin');
|
||||
return LEVEL_ROLE_MAP;
|
||||
return {
|
||||
undefined: _t('Default'),
|
||||
0: _t('User'),
|
||||
50: _t('Moderator'),
|
||||
100: _t('Admin'),
|
||||
};
|
||||
}
|
||||
|
||||
export function textualPowerLevel(level, userDefault) {
|
||||
|
||||
Reference in New Issue
Block a user