Browse Source

Merge pull request #22652 from abpframework/auto-merge/rel-9-1/3640

Merge branch rel-9.2 with rel-9.1
pull/22653/head
maliming 10 months ago
committed by GitHub
parent
commit
e917a3c38c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/angular.yml
  2. 4
      npm/ng-packs/packages/account/config/src/providers/route.provider.ts

4
.github/workflows/angular.yml

@ -27,12 +27,12 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/cache@v2 - uses: actions/cache@v4
with: with:
path: 'npm/ng-packs/node_modules' path: 'npm/ng-packs/node_modules'
key: ${{ runner.os }}-${{ hashFiles('npm/ng-packs/yarn.lock') }} key: ${{ runner.os }}-${{ hashFiles('npm/ng-packs/yarn.lock') }}
- uses: actions/cache@v2 - uses: actions/cache@v4
with: with:
path: 'templates/app/angular/node_modules' path: 'templates/app/angular/node_modules'
key: ${{ runner.os }}-${{ hashFiles('templates/app/angular/yarn.lock') }} key: ${{ runner.os }}-${{ hashFiles('templates/app/angular/yarn.lock') }}

4
npm/ng-packs/packages/account/config/src/providers/route.provider.ts

@ -24,12 +24,14 @@ export function configureRoutes() {
path: '/account/login', path: '/account/login',
name: eAccountRouteNames.Login, name: eAccountRouteNames.Login,
parentName: eAccountRouteNames.Account, parentName: eAccountRouteNames.Account,
layout: eLayoutType.account,
order: 1, order: 1,
}, },
{ {
path: '/account/register', path: '/account/register',
name: eAccountRouteNames.Register, name: eAccountRouteNames.Register,
parentName: eAccountRouteNames.Account, parentName: eAccountRouteNames.Account,
layout: eLayoutType.account,
order: 2, order: 2,
}, },
{ {
@ -45,12 +47,14 @@ export function configureRoutes() {
path: '/account/forgot-password', path: '/account/forgot-password',
parentName: eAccountRouteNames.Account, parentName: eAccountRouteNames.Account,
name: eAccountRouteNames.ForgotPassword, name: eAccountRouteNames.ForgotPassword,
layout: eLayoutType.account,
invisible: true, invisible: true,
}, },
{ {
path: '/account/reset-password', path: '/account/reset-password',
parentName: eAccountRouteNames.Account, parentName: eAccountRouteNames.Account,
name: eAccountRouteNames.ResetPassword, name: eAccountRouteNames.ResetPassword,
layout: eLayoutType.account,
invisible: true, invisible: true,
}, },
]); ]);

Loading…
Cancel
Save