Browse Source

update wrong references in docs

pull/24679/head
EngincanV 3 weeks ago
parent
commit
a78e8ada36
  1. 4
      docs/en/framework/fundamentals/authorization/index.md
  2. 2
      docs/en/framework/ui/angular/account-module.md
  3. 2
      docs/en/framework/ui/blazor/navigation-menu.md
  4. 2
      docs/en/ui-themes/lepton-x-lite/angular.md

4
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

2
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.

2
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**

2
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";

Loading…
Cancel
Save