autenticacion.js 200 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import { ACCESS_TOKEN_RECEIVED, fetchToken } from '../actions/autenticacion' export const renewToken = (action$) => action$.ofType(ACCESS_TOKEN_RECEIVED) .delay(60000) .map(fetchToken)