You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
'use strict';
|
|
|
|
|
|
var groups = require('../../groups');
|
|
|
|
module.exports = {
|
|
name: 'Give chat privilege to registered-users',
|
|
timestamp: Date.UTC(2017, 11, 18),
|
|
method: function (callback) {
|
|
groups.join('cid:0:privileges:group:chat', 'registered-users', callback);
|
|
},
|
|
};
|