IO-761 User Reset updates

This commit is contained in:
Patrick Fic
2021-03-17 13:52:58 -07:00
parent 7cb13d289c
commit b3003249ae
5 changed files with 47 additions and 5 deletions

View File

@@ -77,6 +77,12 @@ export const sendPasswordReset = (email) => ({
type: UserActionTypes.SEND_PASSWORD_RESET_EMAIL_START,
payload: email,
});
export const sendPasswordResetAgain = (email) => ({
type: UserActionTypes.SEND_PASSWORD_RESET_EMAIL_START_AGAIN,
payload: email,
});
export const sendPasswordResetFailure = (error) => ({
type: UserActionTypes.SEND_PASSWORD_RESET_EMAIL_FAILURE,
payload: error,