We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276356f commit ad4df7aCopy full SHA for ad4df7a
client/modules/User/reducers.ts
@@ -11,6 +11,12 @@ export type UserAction = {
11
export const user = (
12
state: Partial<PublicUser> & {
13
authenticated: boolean;
14
+ // TODO: use state of user from server as single source of truth:
15
+ // Currently using redux state below, but server also has similar info.
16
+ resetPasswordInitiate?: boolean;
17
+ resetPasswordInvalid?: boolean;
18
+ emailVerificationInitiate?: boolean;
19
+ emailVerificationTokenState?: boolean;
20
} = {
21
authenticated: false
22
},
0 commit comments