Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/grpc/grpc-js-1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
leomendoza123 authored Sep 2, 2024
2 parents 4b67954 + 02c55a0 commit 591e8d9
Show file tree
Hide file tree
Showing 67 changed files with 743 additions and 1,495 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
## v2.104.8 - 2024-08-30

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.7...v2.104.8)

- [#2339](https://github.com/ORCID/orcid-angular/pull/2339): batch-of-fixes-30-aug

## v2.104.7 - 2024-08-30

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.6...v2.104.7)

## v2.104.6 - 2024-08-30

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.5...v2.104.6)

- [#2337](https://github.com/ORCID/orcid-angular/pull/2337): update-inst-signin

## v2.104.5 - 2024-08-30

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.4...v2.104.5)

- [#2336](https://github.com/ORCID/orcid-angular/pull/2336): Lmendoza/batch of fixes 29 aug

## v2.104.4 - 2024-08-28

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.3...v2.104.4)

## v2.104.3 - 2024-08-28

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.2...v2.104.3)

## v2.104.2 - 2024-08-27

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.1...v2.104.2)

- [#2330](https://github.com/ORCID/orcid-angular/pull/2330): update-inst-signin

## v2.104.1 - 2024-08-22

[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.104.0...v2.104.1)
Expand Down
11 changes: 2 additions & 9 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import { LanguageGuard } from './guards/language.guard'
import { ThirdPartySigninCompletedGuard } from './guards/third-party-signin-completed.guard'
import { TwoFactorSigninGuard } from './guards/two-factor-signin.guard'
import { AuthenticatedNoDelegatorGuard } from './guards/authenticated-no-delagator.guard'
import { RegisterTogglGuard } from './guards/register-toggl.guard'

const routes: Routes = [
{
Expand Down Expand Up @@ -90,15 +89,9 @@ const routes: Routes = [
},
{
path: ApplicationRoutes.register,
canMatch: [RegisterTogglGuard],
canActivateChild: [LanguageGuard, RegisterGuard],
loadChildren: () => {
return localStorage.getItem('REGISTRATION_2_0') !== 'enabled'
? import('./register/register.module').then(
(m) => m.RegisterModuleLegacy
)
: import('./register2/register.module').then((m) => m.Register2Module)
},
loadChildren: () =>
import('./register2/register.module').then((m) => m.Register2Module),
},
{
path: ApplicationRoutes.search,
Expand Down
Loading

0 comments on commit 591e8d9

Please sign in to comment.