diff --git a/openbis_ng_ui/src/store/sagas/api.js b/openbis_ng_ui/src/store/sagas/api.js index 740f0eafa6d2af8714957f326db0d3f61538b599..e1cf527237829b6ddf414723d084599bc5e9530f 100644 --- a/openbis_ng_ui/src/store/sagas/api.js +++ b/openbis_ng_ui/src/store/sagas/api.js @@ -2,7 +2,7 @@ import {put, takeEvery, apply} from 'redux-saga/effects' import {facade} from '../../services/openbis.js' import * as actions from '../actions/actions.js' -export default function* api() { +export default function* apiSaga() { yield takeEvery(actions.API_REQUEST, apiRequest) } diff --git a/openbis_ng_ui/src/store/sagas/app.js b/openbis_ng_ui/src/store/sagas/app.js index 2a2fd8d6a289ee1c51121ea811374f39e955031b..403c23364335ced855d6bb8fd61140d5798d0af4 100644 --- a/openbis_ng_ui/src/store/sagas/app.js +++ b/openbis_ng_ui/src/store/sagas/app.js @@ -3,7 +3,7 @@ import {facade, dto} from '../../services/openbis.js' import * as actions from '../actions/actions.js' import * as pages from '../consts/pages.js' -export default function* app() { +export default function* appSaga() { yield takeEvery(actions.INIT, init) yield takeEvery(actions.LOGIN, login) yield takeEvery(actions.LOGOUT, logout) diff --git a/openbis_ng_ui/src/store/sagas/browser/browser.js b/openbis_ng_ui/src/store/sagas/browser/browser.js index 2eb63d0f3e95ecad7d28711a9a268673def48c4a..d3ea19032d82197b4425b4e19e0b03a0b129ae17 100644 --- a/openbis_ng_ui/src/store/sagas/browser/browser.js +++ b/openbis_ng_ui/src/store/sagas/browser/browser.js @@ -9,7 +9,7 @@ import * as common from '../../common/browser.js' import * as typesBrowser from './types.js' import * as usersBrowser from './users.js' -export default function* browser() { +export default function* browserSaga() { yield takeEvery(actions.BROWSER_INIT, browserInit) yield takeEvery(actions.BROWSER_FILTER_CHANGE, browserFilterChange) yield takeEvery(actions.BROWSER_NODE_SELECT, browserNodeSelect) diff --git a/openbis_ng_ui/src/store/sagas/page.js b/openbis_ng_ui/src/store/sagas/page.js index 84adbb5bfb54c4de153ebdde78d9900bd4aeeb75..077baaf59ce6b594ff2ed4e68044648e52dad7e3 100644 --- a/openbis_ng_ui/src/store/sagas/page.js +++ b/openbis_ng_ui/src/store/sagas/page.js @@ -3,7 +3,7 @@ import {put, takeEvery, select} from './effects.js' import * as selectors from '../selectors/selectors.js' import * as actions from '../actions/actions.js' -export default function* page() { +export default function* pageSaga() { yield takeEvery(actions.OBJECT_OPEN, objectOpen) yield takeEvery(actions.OBJECT_CLOSE, objectClose) }