bigbluebutton-Github/bigbluebutton-html5/imports/utils/statuses.js
2017-09-22 14:03:14 -03:00

25 lines
479 B
JavaScript

const EMOJI_STATUSES = {
away: 'away',
raiseHand: 'raiseHand',
neutral: 'neutral',
confused: 'confused',
sad: 'sad',
happy: 'happy',
applause: 'applause',
thumbsUp: 'thumbsUp',
thumbsDown: 'thumbsDown',
none: 'none',
};
const EMOJI_NORMALIZE = {
agree: 'thumbs_up',
disagree: 'thumbs_down',
thumbsUp: 'thumbs_up',
thumbsDown: 'thumbs_down',
raiseHand: 'hand',
away: 'time',
neutral: 'undecided',
};
export { EMOJI_STATUSES, EMOJI_NORMALIZE };