client/src/actions/userActions.js
author Alexandre Segura <mex.zktk@gmail.com>
Thu, 29 Jun 2017 12:05:09 +0200
changeset 105 0a1d6560acac
parent 72 7634b424f426
permissions -rw-r--r--
Introduce authenticated routes.

import * as types from '../constants/actionTypes';

export const updateSettings = (username, firstname, lastname) => {
  return {
    type: types.USER_UPDATE_SETTINGS_ASYNC,
    username,
    firstname,
    lastname
  };
}

export const setAutoSubmit = (value) => {
  return {
    type: types.USER_TOGGLE_AUTO_SUBMIT,
    value
  };
}