index.js
565 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import 'rxjs'
import { combineEpics } from 'redux-observable'
import { fetchAfterPost,
searchDebounce,
changePage
} from './solicitudes'
import {
logAll,
} from './logger'
import {
renewToken
} from './autenticacion'
import {
askLocationOnPost,
getLocationOnGrant,
postLocationOnReceive,
} from './location'
import {
getUserIfExists
} from './usuario'
export default combineEpics(
fetchAfterPost,
logAll,
askLocationOnPost,
getLocationOnGrant,
postLocationOnReceive,
searchDebounce,
changePage,
getUserIfExists,
renewToken
)