Skip to content
Snippets Groups Projects
leaveRoom.coffee 253 B
Newer Older
Gabriel Engel's avatar
Gabriel Engel committed
	leaveRoom: (rid) ->
		if not Meteor.userId()
			throw new Meteor.Error 203, t('User_logged_out')
Gabriel Engel's avatar
Gabriel Engel committed
		ChatSubscription.remove
			rid: rid
			'u._id': Meteor.userId()

		ChatRoom.update rid,
				usernames: Meteor.user().username