mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
8 lines
262 B
JavaScript
Executable file
8 lines
262 B
JavaScript
Executable file
import { takeEvery } from 'redux-saga/effects';
|
|
import { LOCATION_CHANGE } from 'redux-first-history';
|
|
|
|
import services from '../services';
|
|
|
|
export default function* routerWatchers() {
|
|
yield takeEvery(LOCATION_CHANGE, () => services.handleLocationChange());
|
|
}
|