You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

authProviderActionConstants.js 371B

12345678910
  1. import {
  2. createErrorType,
  3. createFetchType,
  4. createSuccessType,
  5. } from "../actionHelpers";
  6. export const AUTH_PROVIDER_SCOPE = "AUTH_PROVIDER";
  7. export const AUTH_PROVIDER_FETCH = createFetchType(AUTH_PROVIDER_SCOPE);
  8. export const AUTH_PROVIDER_SUCCESS = createSuccessType(AUTH_PROVIDER_SCOPE);
  9. export const AUTH_PROVIDER_ERROR = createErrorType(AUTH_PROVIDER_SCOPE);