index.js 565 Bytes
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
)