Skip to content
Snippets Groups Projects
Commit 047b23fd authored by Oswaldo Acauan's avatar Oswaldo Acauan
Browse files

Fix for annotations

parent adb34da2
No related branches found
No related tags found
No related merge requests found
......@@ -22,12 +22,13 @@ function isLastMessage(meetingId, annotation, userId) {
return false;
}
export default function sendAnnotation(credentials, annotation, whiteboardId) {
export default function sendAnnotation(credentials, annotation) {
const REDIS_CONFIG = Meteor.settings.private.redis;
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'SendWhiteboardAnnotationPubMsg';
const { meetingId, requesterUserId, requesterToken } = credentials;
const whiteboardId = annotation.wbId;
check(meetingId, String);
check(requesterUserId, String);
......
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