From a78e8ada366129f4ec66423f5980d72c85ee8971 Mon Sep 17 00:00:00 2001 From: EngincanV Date: Mon, 19 Jan 2026 17:53:51 +0300 Subject: [PATCH] update wrong references in docs --- docs/en/framework/fundamentals/authorization/index.md | 4 ++-- docs/en/framework/ui/angular/account-module.md | 2 +- docs/en/framework/ui/blazor/navigation-menu.md | 2 +- docs/en/ui-themes/lepton-x-lite/angular.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/framework/fundamentals/authorization/index.md b/docs/en/framework/fundamentals/authorization/index.md index 3b35115f30..6cbd1a7a6a 100644 --- a/docs/en/framework/fundamentals/authorization/index.md +++ b/docs/en/framework/fundamentals/authorization/index.md @@ -327,8 +327,8 @@ public async Task CreateAsync(CreateAuthorDto input) See the following documents to learn how to re-use the authorization system on the client side: * [ASP.NET Core MVC / Razor Pages UI: Authorization](../../ui/mvc-razor-pages/javascript-api/auth.md) -* [Angular UI Authorization](../../ui/angular/authorization/index.md) -* [Blazor UI Authorization](../../ui/blazor/authorization/index.md) +* [Angular UI Authorization](../../ui/angular/authorization.md) +* [Blazor UI Authorization](../../ui/blazor/authorization.md) ## Permission Management diff --git a/docs/en/framework/ui/angular/account-module.md b/docs/en/framework/ui/angular/account-module.md index 691d45cc51..2f4df8cd42 100644 --- a/docs/en/framework/ui/angular/account-module.md +++ b/docs/en/framework/ui/angular/account-module.md @@ -150,4 +150,4 @@ export const environment = { } as Config.Environment; ``` -See the [Authorization in Angular UI](./authorization/index.md) document for more details. +See the [Authorization in Angular UI](./authorization.md) document for more details. diff --git a/docs/en/framework/ui/blazor/navigation-menu.md b/docs/en/framework/ui/blazor/navigation-menu.md index 8d24255e88..be708963d0 100644 --- a/docs/en/framework/ui/blazor/navigation-menu.md +++ b/docs/en/framework/ui/blazor/navigation-menu.md @@ -117,7 +117,7 @@ There are more options of a menu item (the constructor of the `ApplicationMenuIt As seen above, a menu contributor contributes to the menu dynamically. So, you can perform any custom logic or get menu items from any source. -One use case is the [authorization](authorization/index.md). You typically want to add menu items by checking a permission. +One use case is the [authorization](authorization.md). You typically want to add menu items by checking a permission. **Example: Check if the current user has a permission** diff --git a/docs/en/ui-themes/lepton-x-lite/angular.md b/docs/en/ui-themes/lepton-x-lite/angular.md index d5207a66ce..1ab5212462 100644 --- a/docs/en/ui-themes/lepton-x-lite/angular.md +++ b/docs/en/ui-themes/lepton-x-lite/angular.md @@ -53,7 +53,7 @@ export const appConfig: ApplicationConfig = { }; ``` -Note: If you employ [Resource Owner Password Flow](../../framework/ui/angular/authorization/index.md#resource-owner-password-flow) for authorization, you should provide the following provider as well: +Note: If you employ [Resource Owner Password Flow](../../framework/ui/angular/authorization.md#resource-owner-password-flow) for authorization, you should provide the following provider as well: ```js import { provideAccountLayout } from "@abp/ng.theme.lepton-x/account";