Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
428
Merge Requests
57
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
4f4e9669
Commit
4f4e9669
authored
2 days ago
by
Emiliano Balbuena
Browse files
Options
Download
(chore): Redirect email confirmation URL to root
parent
3d02ced0
goal/email-verification
1 merge request
!699
Email Confirmation
Pipeline
#105221525
failed with stages
in 30 minutes and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
src/app/common/common.module.ts
View file @
4f4e9669
import
{
NgModule
}
from
'
@angular/core
'
;
import
{
CommonModule
as
NgCommonModule
}
from
'
@angular/common
'
;
import
{
RouterModule
,
Router
}
from
'
@angular/router
'
;
import
{
RouterModule
,
Router
,
Routes
}
from
'
@angular/router
'
;
import
{
FormsModule
,
ReactiveFormsModule
}
from
'
@angular/forms
'
;
import
{
MINDS_PIPES
}
from
'
./pipes/pipes
'
;
...
...
@@ -130,6 +130,13 @@ import { EmailConfirmationComponent } from './components/email-confirmation/emai
PlotlyModule
.
plotlyjs
=
PlotlyJS
;
const
routes
:
Routes
=
[
{
path
:
'
email-confirmation
'
,
redirectTo
:
'
/
'
,
},
];
@
NgModule
({
imports
:
[
NgCommonModule
,
...
...
@@ -138,6 +145,7 @@ PlotlyModule.plotlyjs = PlotlyJS;
FormsModule
,
ReactiveFormsModule
,
PlotlyModule
,
RouterModule
.
forChild
(
routes
),
],
declarations
:
[
MINDS_PIPES
,
...
...
This diff is collapsed.
Please
register
or
sign in
to comment