index.js 894 B

1234567891011121314151617181920
  1. export const SIGN_IN_URL = 'https://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 = 'https://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';