bcgov/citz-imb-staff-purchasing-reimbursement

View on GitHub
app/src/keycloak/service/authActions.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Defines the possible types of authentication actions.
enum AuthActionType {
  LOGIN = 'LOGIN',
  LOGOUT = 'LOGOUT',
  SET_TOKEN = 'SET_TOKEN',
}

export default AuthActionType;