import PollService from '/imports/ui/components/poll/service'; import AudioService from '/imports/ui/components/audio/service'; const MAX_CHAR_LENGTH = 5; export const shouldStackOptions = (keys: Array) => keys.some((k) => k.length > MAX_CHAR_LENGTH); const playAlert = () => { const APP_CONFIG = window.meetingClientSettings.public.app; return AudioService.playAlertSound( `${APP_CONFIG.cdn + APP_CONFIG.basename}/resources/sounds/Poll.mp3`, ); }; export default { shouldStackOptions, pollAnswerIds: PollService.pollAnswerIds, pollTypes: PollService.pollTypes, isDefaultPoll: PollService.isDefaultPoll, playAlert, };