| author | salimr <riwad.salim@yahoo.fr> |
| Fri, 31 Aug 2018 15:15:29 +0200 | |
| changeset 152 | 4e9e755cef51 |
| parent 130 | 78246db1cbac |
| permissions | -rw-r--r-- |
import * as types from '../constants/actionTypes'; export const updateLastSync = (timestamp) => { return { type: types.SYNC_SET_LAST_SYNC, value: timestamp } } export const endSynchronize = () => { return { type: types.SYNC_END_SYNC } } export const startSynchronize = () => { return { type: types.SYNC_START_SYNC } }