Guest User

types.js

a guest
Nov 25th, 2017
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. export const CREATE_SESSION = 'create_session';
  2. //User DATA
  3. export const FETCH_USER_INFO = 'fetch_user_info';
  4. export const FETCH_USER_IMG = 'fetch_user_img';
  5. export const FETCH_USER_FEEDS = 'fetch_user_feeds';
  6. export const FETCH_USER_CONNECTIONS = 'fetch_user_connections';
  7. export const FETCH_ALL_USERS = 'fetch_all_users';
  8. //Events
  9. export const CREATE_EVENT = 'create_event';
  10. export const EVENT_INPUT_CHANGE = 'event_input_change';
  11. export const LOAD = 'load';
  12. export const CLEAR = 'clear'
  13. export const CREATE_EVENT_FAIL = 'create_event_fail';
  14. export const FETCH_UPCOMING_EVENTS = 'fetch_upcoming_events';
  15. export const FETCH_MY_UPCOMING_EVENTS = 'fetch_my_upcoming_events';
  16. export const FETCH_EVENT_INFO = 'fetch_event_info';
  17. export const ATTEND_EVENT = 'attend_event';
  18. export const CREATE_EVENT_SUCCESS = 'create_event_success';
  19. export const UPDATE_EVENT_SUCCESS = 'update_event_success';
  20. export const UPDATE_EVENT_FAIL = 'update_event_fail';
  21.  
  22. //Connections
  23. export const FETCH_PENDING_USER_CONNECTIONS = 'fetch_pending_user_connections';
  24. export const CREATE_CONNECTION_REQUEST = 'create_connection_request';
  25. export const FETCH_CONNECTION_STATUS = 'fetch_connection_status';
  26. export const FETCH_USERS = 'fetch_user';
  27. export const CREATE_POST = 'create_post';
  28. export const ACCEPT_CONNECTION = 'accept_connection';
  29.  
  30. //posts
  31. export const POST_USER_WALL = 'post_user_wall';
  32. export const USER_WALL_INPUT_CHANGE = 'user_wall_input_change';
  33. export const POSTED = 'posted';
  34. export const EVENT_WALL_INPUT_CHANGE = 'event_wall_input_change';
Advertisement
Add Comment
Please, Sign In to add comment