Gitter migration: Setup redirects (rollout pt. 3)
[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;