Dulce-Work-Schedule/2018.1-Dulce_App

View on GitHub
src/Actions/currentProfile.js

Summary

Maintainability
A
0 mins
Test Coverage
export const SETPROFILE = 'SETPROFILE';
export const RESETPROFILE = 'RESETPROFILE';

export function actionSetProfile(currentProfile) {
  return {
    type: SETPROFILE,
    currentProfile: currentProfile
  };
}

export function actionResetProfile() {
  return {
    type: RESETPROFILE,
    currentProfile: {}
  };
}