2024-02-27 20:07:42 +08:00
|
|
|
import AudioService from '/imports/ui/components/audio/service';
|
|
|
|
|
|
|
|
const playAlertSound = () => {
|
2024-03-22 03:41:32 +08:00
|
|
|
AudioService.playAlertSound(`${window.meetingClientSettings.public.app.cdn
|
2024-08-03 02:10:39 +08:00
|
|
|
+ window.meetingClientSettings.public.app.basename}`
|
2024-02-27 20:07:42 +08:00
|
|
|
+ '/resources/sounds/notify.mp3');
|
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
playAlertSound,
|
|
|
|
};
|