index.js
503 Bytes
import 'rxjs'
import { combineEpics } from 'redux-observable'
import { fetchAfterPost,
searchDebounce,
changePage
} from './solicitudes'
import {
logAll,
} from './logger'
import {
askLocationOnPost,
getLocationOnGrant,
postLocationOnReceive,
} from './location'
import {
getUserIfExists
} from './usuario'
export default combineEpics(
fetchAfterPost,
logAll,
askLocationOnPost,
getLocationOnGrant,
postLocationOnReceive,
searchDebounce,
changePage,
getUserIfExists
)