client/src/actions/syncActions.js
author salimr <riwad.salim@yahoo.fr>
Tue, 09 Oct 2018 11:03:18 +0200
changeset 163 78c54cb473cd
parent 130 78246db1cbac
permissions -rw-r--r--
Add offline message

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
  }
}