mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 12:05:57 +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; |