PermissionsEnum.Channels.isCurator = function (userId, channel) {
    var isCurator = false;
    _.forEach(channel.curators, function (curator) {
        if (curator.userId === userId) {
            isCurator = true;