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/app/user-status/client/lib/userStatus.js

36 lines
514 B

export const userStatus = {
packages: {
base: {
render(html) {
return html;
},
},
},
list: {
online: {
name: 'online',
localizeName: true,
id: 'online',
statusType: 'online',
},
away: {
name: 'away',
localizeName: true,
id: 'away',
statusType: 'away',
},
busy: {
name: 'busy',
localizeName: true,
id: 'busy',
statusType: 'busy',
},
invisible: {
name: 'invisible',
localizeName: true,
id: 'offline',
statusType: 'offline',
},
},
};