Anapher/Strive

View on GitHub
src/Web/WebSPA/Client/src/features/breakout-rooms/sagas.ts

Summary

Maintainability
A
40 mins
Test Coverage
import { changeBreakoutRooms, closeBreakoutRooms, openBreakoutRooms } from 'src/core-hub';
import { showErrorOn } from 'src/store/notifier/utils';

export default function* mySaga() {
   yield showErrorOn(openBreakoutRooms.returnAction);
   yield showErrorOn(closeBreakoutRooms.returnAction);
   yield showErrorOn(changeBreakoutRooms.returnAction);
}