Guest User

Untitled

a guest
Jul 15th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. export const authorize = (email?: string, password?: string) => ({
  2. types: [types.AUTH_PENDING, types.AUTH_SUCCESS, types.AUTH_FAILURE],
  3. promise: AuthService.authorize(email, password),
  4. onSuccess: AuthService.handleSuccess,
  5. onFailure: AuthService.handleFailure,
  6. });
Add Comment
Please, Sign In to add comment