mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-16 04:23:12 +01:00
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
var Groups = require('../groups'),
|
|
|
|
SocketGroups = {};
|
|
|
|
SocketGroups.getMemberships = function(socket, data, callback) {
|
|
if (data && data.uid) {
|
|
Groups.getMemberships(data.uid, callback);
|
|
}
|
|
};
|
|
|
|
module.exports = SocketGroups; |