1
0
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:
David Baker
2017-05-25 17:17:37 +01:00
parent feef7d49e9
commit 85756c78b4

View File

@@ -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) {