client/src/constants/actionTypes.js
changeset 80 b3a02ea6d097
parent 79 772b73e31069
child 87 dbcee57de2c6
equal deleted inserted replaced
79:772b73e31069 80:b3a02ea6d097
     1 export const NOOP = 'NOOP';
     1 export const NOOP = 'NOOP';
     2 
     2 
     3 export const ADD_NOTE = 'ADD_NOTE';
     3 export const ADD_NOTE = 'ADD_NOTE';
     4 export const DELETE_NOTE = 'DELETE_NOTE';
     4 export const DELETE_NOTE = 'DELETE_NOTE';
       
     5 export const UPDATE_NOTE = 'UPDATE_NOTE';
     5 
     6 
     6 export const CREATE_SESSION = 'CREATE_SESSION';
     7 export const CREATE_SESSION = 'CREATE_SESSION';
     7 export const UPDATE_SESSION = 'UPDATE_SESSION';
     8 export const UPDATE_SESSION = 'UPDATE_SESSION';
     8 export const LOAD_SESSIONS = 'LOAD_SESSIONS';
     9 export const LOAD_SESSIONS = 'LOAD_SESSIONS';
     9 
    10