-
Notifications
You must be signed in to change notification settings - Fork 938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add password reset link #1367
Add password reset link #1367
Conversation
6f7d350
to
8cd84e0
Compare
787087d
to
8e9d5fc
Compare
8e9d5fc
to
cc0b0b3
Compare
export const RESET_PASSWORD_REQUEST = 'app/PasswordResetPage/RESET_PASSWORD_REQUEST'; | ||
export const RESET_PASSWORD_SUCCESS = 'app/PasswordResetPage/RESET_PASSWORD_SUCCESS'; | ||
export const RESET_PASSWORD_ERROR = 'app/PasswordResetPage/RESET_PASSWORD_ERROR'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it make sense to import these from PasswordResetPage duck? Do we have a pattern for using other page's states in another duck?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume this is a copy-paste typo. Rename this action strings correctly or our page-reducers start to react other pages changes. (One option is to create public duck-file, but that might be an overkill.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that's a copy-paste typo (it seems I never remember to change them...) I'll fix that!
I also considered a shared duck file for these but it really felt a bit overkill for now.
cc0b0b3
to
0b92d55
Compare
No description provided.