The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/server/methods/readMessages.coffee

11 lines
382 B

Meteor.methods
readMessages: (room) ->
fromId = Meteor.userId()
# console.log '[methods] readMessages -> '.green, 'fromId:', fromId, 'room:', room
if Meteor.userId()
filter = { rid: room, 'u._id': Meteor.userId() }
else
throw new Meteor.Error 203, '[methods] readMessages -> Invalid user'
ChatSubscription.update filter, { $set: { unread: 0, ls: (new Date()) } }