mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-31 19:15:58 +01:00
This commit is contained in:
@@ -39,6 +39,19 @@ define('forum/groups/details', ['iconSelect', 'vendor/colorpicker/colorpicker',
|
||||
});
|
||||
break;
|
||||
|
||||
case 'kick':
|
||||
socket.emit('groups.kick', {
|
||||
uid: uid,
|
||||
groupName: ajaxify.variables.get('group_name')
|
||||
}, function(err) {
|
||||
if (!err) {
|
||||
userRow.slideUp().remove();
|
||||
} else {
|
||||
app.alertError(err.message);
|
||||
}
|
||||
});
|
||||
break;
|
||||
|
||||
case 'update':
|
||||
Details.update();
|
||||
break;
|
||||
|
||||
@@ -102,7 +102,7 @@ SocketGroups.reject = function(socket, data, callback) {
|
||||
};
|
||||
|
||||
SocketGroups.update = function(socket, data, callback) {
|
||||
if(!data) {
|
||||
if (!data) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
}
|
||||
|
||||
@@ -130,7 +130,7 @@ SocketGroups.create = function(socket, data, callback) {
|
||||
};
|
||||
|
||||
SocketGroups.delete = function(socket, data, callback) {
|
||||
if(!data) {
|
||||
if (!data) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
}
|
||||
|
||||
@@ -156,6 +156,20 @@ SocketGroups.search = function(socket, data, callback) {
|
||||
groups.search(data.query || '', data.options || {}, callback);
|
||||
};
|
||||
|
||||
SocketGroups.kick = function(socket, data, callback) {
|
||||
if (!data) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
}
|
||||
|
||||
groups.ownership.isOwner(socket.uid, data.groupName, function(err, isOwner) {
|
||||
if (!isOwner) {
|
||||
return callback(new Error('[[error:no-privileges]]'));
|
||||
}
|
||||
|
||||
groups.leave(data.groupName, data.uid, callback);
|
||||
});
|
||||
};
|
||||
|
||||
SocketGroups.cover = {};
|
||||
|
||||
SocketGroups.cover.get = function(socket, data, callback) {
|
||||
@@ -163,7 +177,7 @@ SocketGroups.cover.get = function(socket, data, callback) {
|
||||
};
|
||||
|
||||
SocketGroups.cover.update = function(socket, data, callback) {
|
||||
if(!data) {
|
||||
if (!data) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
} else if (socket.uid === 0) {
|
||||
return callback(new Error('[[error:no-privileges]]'));
|
||||
|
||||
Reference in New Issue
Block a user