public static function Nodejs::setUserPresenceList in Node.js integration 7
Same name and namespace in other branches
- 6 nodejs.module \Nodejs::setUserPresenceList()
1 call to Nodejs::setUserPresenceList()
- nodejs_set_user_presence_list in ./
nodejs.module - Set the list of uids a user can see presence notifications for.
File
- ./
nodejs.module, line 889
Class
Code
public static function setUserPresenceList($uid, array $uids) {
return self::httpRequest("nodejs/user/presence-list/{$uid}/" . implode(',', $uids));
}