mirror of
https://github.com/plankanban/planka.git
synced 2025-08-05 21:45:30 +02:00
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
|
import { takeEvery } from 'redux-saga/effects';
|
||
|
import { LOCATION_CHANGE } from 'connected-react-router';
|
||
|
|
||
|
import { locationChangedService } from '../services';
|
||
|
|
||
|
export default function* () {
|
||
|
yield takeEvery(LOCATION_CHANGE, () => locationChangedService());
|
||
|
}
|