Skip to content
Snippets Groups Projects
Commit 053e0f93 authored by Bobak Oftadeh's avatar Bobak Oftadeh
Browse files

Fixed issue where unnecessary information was being published to the client.

parent b5430aa3
No related branches found
No related tags found
No related merge requests found
......@@ -13,9 +13,17 @@ function meetings(credentials) {
Logger.info(`Publishing meeting =${meetingId} ${requesterUserId} ${requesterToken}`);
return Meetings.find({
const selector = {
meetingId,
});
};
const options = {
fields: {
password: false,
},
};
return Meetings.find(selector, options);
}
function publish(...args) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment