PLT-6724 Hide options relating to channel admin when not licensed (#6583)

Этот коммит содержится в:
Harrison Healey
2017-06-05 16:34:43 -04:00
коммит произвёл Joram Wilander
родитель db1b202e42
Коммит a3171048e0
2 изменённых файлов: 11 добавлений и 13 удалений

Просмотреть файл

@@ -66,6 +66,10 @@ export function isInRole(roles, inRole) {
}
export function isChannelAdmin(roles) {
if (global.mm_license.IsLicensed !== 'true') {
return false;
}
if (isInRole(roles, 'channel_admin')) {
return true;
}