Merge branch 'hotfix/21.56.9' into master
[gitter.git] / shared / is-gitlab-security-descriptor-type.js
blobf87cb5c298302fa1a3be99ebb84ff4795dba9018
1 'use strict';
3 function isGitlabSecurityDescriptorType(type) {
4 return type === 'GL_GROUP' || type === 'GL_PROJECT' || type === 'GL_USER';
7 module.exports = isGitlabSecurityDescriptorType;