Skip to content
Snippets Groups Projects
Commit 3c858d69 authored by piotr.kupczyk@id.ethz.ch's avatar piotr.kupczyk@id.ethz.ch
Browse files

SSDM-7569 NEW openBIS UI - General Template/Infrastructure for Forms -...

SSDM-7569 NEW openBIS UI - General Template/Infrastructure for Forms - Visualisation/Creation/Edit - fix automated tests
parent c4a9ce22
No related branches found
No related tags found
No related merge requests found
......@@ -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)
}
......
......@@ -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)
......
......@@ -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)
......
......@@ -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)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment