client/src/actions/syncActions.js
author ymh <ymh.work@gmail.com>
Sun, 25 Nov 2018 22:07:22 +0100
changeset 177 103b2e2a31fb
parent 130 78246db1cbac
permissions -rw-r--r--
Correct requirements entry for django-auditlog

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