2016-04-28 05:04:15 +08:00
|
|
|
import { isAllowedTo } from '/server/user_permissions';
|
|
|
|
|
2016-04-20 01:43:31 +08:00
|
|
|
Meteor.methods({
|
|
|
|
// meetingId: the meeting where the user is
|
|
|
|
// userId: the userid of the user logging out
|
|
|
|
// authToken: the authToken of the user
|
|
|
|
userLogout(meetingId, userId, authToken) {
|
|
|
|
if (isAllowedTo('logoutSelf', meetingId, userId, authToken)) {
|
|
|
|
Meteor.log.info(`a user is logging out from ${meetingId}:${userId}`);
|
|
|
|
return requestUserLeaving(meetingId, userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|