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/publications/userAutocomplete.coffee

34 lines
718 B

Meteor.publish 'userAutocomplete', (selector) ->
unless this.userId
return this.ready()
if not _.isObject selector
return this.ready()
options =
fields:
name: 1
username: 1
status: 1
sort:
username: 1
limit: 10
pub = this
exceptions = selector.exceptions or []
cursorHandle = RocketChat.models.Users.findActiveByUsernameOrNameRegexWithExceptions(selector.term, exceptions, options).observeChanges
added: (_id, record) ->
pub.added("autocompleteRecords", _id, record)
changed: (_id, record) ->
pub.changed("autocompleteRecords", _id, record)
removed: (_id, record) ->
pub.removed("autocompleteRecords", _id, record)
@ready()
@onStop ->
cursorHandle.stop()
return