mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 06:43:35 +00:00
Auth/PM-6198 - Registration with Email Verification - Call email clicked endpoint (#10139)
* PM-6198 - Majority of client work done; WIP on registration finish comp * PM-6198 - Registration Finish - Add registerVerificationEmailClicked logic * PM-6198 - RegistrationLinkExpired component; added translations on other clients just in case we use the component on other clients in the future. * PM-6198 - Clean up comment
This commit is contained in:
@@ -660,6 +660,21 @@
|
||||
"loginExpired": {
|
||||
"message": "Your login session has expired."
|
||||
},
|
||||
"logIn": {
|
||||
"message": "Log in"
|
||||
},
|
||||
"restartRegistration": {
|
||||
"message": "Restart registration"
|
||||
},
|
||||
"expiredLink": {
|
||||
"message": "Expired link"
|
||||
},
|
||||
"pleaseRestartRegistrationOrTryLoggingIn": {
|
||||
"message": "Please restart registration or try logging in."
|
||||
},
|
||||
"youMayAlreadyHaveAnAccount": {
|
||||
"message": "You may already have an account"
|
||||
},
|
||||
"logOutConfirmation": {
|
||||
"message": "Are you sure you want to log out?"
|
||||
},
|
||||
|
||||
@@ -792,6 +792,18 @@
|
||||
"loginExpired": {
|
||||
"message": "Your login session has expired."
|
||||
},
|
||||
"restartRegistration": {
|
||||
"message": "Restart registration"
|
||||
},
|
||||
"expiredLink": {
|
||||
"message": "Expired link"
|
||||
},
|
||||
"pleaseRestartRegistrationOrTryLoggingIn": {
|
||||
"message": "Please restart registration or try logging in."
|
||||
},
|
||||
"youMayAlreadyHaveAnAccount": {
|
||||
"message": "You may already have an account"
|
||||
},
|
||||
"logOutConfirmation": {
|
||||
"message": "Are you sure you want to log out?"
|
||||
},
|
||||
|
||||
@@ -18,6 +18,7 @@ import {
|
||||
RegistrationStartSecondaryComponent,
|
||||
RegistrationStartSecondaryComponentData,
|
||||
LockIcon,
|
||||
RegistrationLinkExpiredComponent,
|
||||
} from "@bitwarden/auth/angular";
|
||||
import { FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum";
|
||||
|
||||
@@ -205,6 +206,22 @@ const routes: Routes = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "signup-link-expired",
|
||||
canActivate: [canAccessFeature(FeatureFlag.EmailVerification), unauthGuardFn()],
|
||||
data: {
|
||||
pageTitle: "expiredLink",
|
||||
} satisfies AnonLayoutWrapperData,
|
||||
children: [
|
||||
{
|
||||
path: "",
|
||||
component: RegistrationLinkExpiredComponent,
|
||||
data: {
|
||||
loginRoute: "/login",
|
||||
} satisfies RegistrationStartSecondaryComponentData,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "sso",
|
||||
canActivate: [unauthGuardFn()],
|
||||
|
||||
@@ -627,6 +627,18 @@
|
||||
"loginExpired": {
|
||||
"message": "Your login session has expired."
|
||||
},
|
||||
"restartRegistration": {
|
||||
"message": "Restart registration"
|
||||
},
|
||||
"expiredLink": {
|
||||
"message": "Expired link"
|
||||
},
|
||||
"pleaseRestartRegistrationOrTryLoggingIn": {
|
||||
"message": "Please restart registration or try logging in."
|
||||
},
|
||||
"youMayAlreadyHaveAnAccount": {
|
||||
"message": "You may already have an account"
|
||||
},
|
||||
"logOutConfirmation": {
|
||||
"message": "Are you sure you want to log out?"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user