From 2081e14598cf5d0ae8bcd7d4110f58406d0a1702 Mon Sep 17 00:00:00 2001 From: Engincan VESKE <43685404+EngincanV@users.noreply.github.com> Date: Tue, 17 May 2022 16:24:54 +0300 Subject: [PATCH] Update Application.md --- docs/en/Startup-Templates/Application.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/Startup-Templates/Application.md b/docs/en/Startup-Templates/Application.md index 293031a133..a262ef2d88 100644 --- a/docs/en/Startup-Templates/Application.md +++ b/docs/en/Startup-Templates/Application.md @@ -316,9 +316,9 @@ You should add `routes` property in the `data` object to add a link on the menu In the above example; * If the user is not logged in, AuthGuard blocks access and redirects to the login page. * PermissionGuard checks the user's permission with the `requiredPolicy` property of the `routes` object. If the user is not authorized to access the page, the 403 page appears. -* The `name` property the of `routes` is the menu link label. A localization key can be defined. -* The `iconClass` property the of `routes` object is the menu link icon class. -* The `requiredPolicy` property the of `routes` object is the required policy key to access the page. +* The `name` property of `routes` is the menu link label. A localization key can be defined. +* The `iconClass` property of the `routes` object is the menu link icon class. +* The `requiredPolicy` property of the `routes` object is the required policy key to access the page. After the above `routes` definition, if the user is authorized, the dashboard link will appear on the menu.