index.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. export const SIGN_IN_URL = 'http://quiz.maxcrc.de/api/v1/user?';
  2. export const SIGN_IN_REQUEST = 'SIGN_IN_REQUEST';
  3. export const SIGN_IN_REQUEST_SUCCESS = 'SIGN_IN_REQUEST_SUCCESS';
  4. export const SIGN_IN_REQUEST_FAILURE = 'SIGN_IN_REQUEST_FAILURE';
  5. export const SIGN_UP_URL = 'http://quiz.maxcrc.de/api/v1/user';
  6. export const SIGN_UP_REQUEST = 'SIGN_UP_REQUEST';
  7. export const SIGN_UP_REQUEST_SUCCESS = 'SIGN_UP_REQUEST_SUCCESS';
  8. export const SIGN_UP_REQUEST_FAILURE = 'SIGN_UP_REQUEST_FAILURE';
  9. export const USER_IS_SIGNED_IN = 'USER_IS_SIGNED_IN';
  10. export const USER_IS_NOT_SIGNED_IN = 'USER_IS_NOT_SIGNED_IN';
  11. export const SIGN_OUT = 'SIGN_OUT';
  12. export const USERS_GET_REQUEST = 'USERS_GET_REQUEST';
  13. export const USERS_GET_REQUEST_SUCCESS = 'USERS_GET_REQUEST_SUCCESS';
  14. export const USERS_GET_REQUEST_SUCCESS_FAILURE = 'USERS_GET_REQUEST_FAILURE';
  15. export const TOKEN_AUTH = 'TOKEN_AUTH';
  16. export const USERS_CHANGE_URL = 'http://quiz.maxcrc.de/api/v1/user/';
  17. export const USERS_CHANGE_REQUEST = 'USERS_CHANGE_REQUEST';
  18. export const USERS_CHANGE_REQUEST_SUCCESS = 'USERS_CHANGE_REQUEST_SUCCESS';
  19. export const USERS_CHANGE_REQUEST_FAILURE = 'USERS_CHANGE_REQUEST_FAILURE';
  20. export const PASSWORD_CHANGE_REQUEST = 'PASSWORD_CHANGE_REQUEST';
  21. export const PASSWORD_CHANGE_REQUEST_SUCCESS = 'PASSWORD_CHANGE_REQUEST_SUCCESS';
  22. export const PASSWORD_CHANGE_REQUEST_FAILURE = 'PASSWORD_CHANGE_REQUEST_FAILURE';
  23. export const GET_CARDS_URL = 'https://quiz.maxcrc.de/api/v1/quiz';
  24. export const GET_CARDS = 'GET_CARD';
  25. export const GET_CARDS_SUCCESS = 'GET_CARDS_SUCCESS';
  26. export const GET_CARDS_FAILURE = 'GET_CARDS_FAILURE';