Merge pull request #8654 from ArtemDzhereleiko/AD/imp/help/jwt-security-settings

Added help link for JWT security settings
This commit is contained in:
Igor Kulikov 2023-05-30 15:01:59 +03:00 committed by GitHub
commit 2bbd3d1107
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -164,6 +164,8 @@
<mat-card-title> <mat-card-title>
<span class="mat-headline-5" translate>admin.jwt.security-settings</span> <span class="mat-headline-5" translate>admin.jwt.security-settings</span>
</mat-card-title> </mat-card-title>
<span fxFlex></span>
<div tb-help="jwtSecuritySettings"></div>
</mat-card-header> </mat-card-header>
<mat-card-content style="padding-top: 16px;"> <mat-card-content style="padding-top: 16px;">
<form [formGroup]="jwtSecuritySettingsFormGroup" (ngSubmit)="saveJwtSettings()" autocomplete="off"> <form [formGroup]="jwtSecuritySettingsFormGroup" (ngSubmit)="saveJwtSettings()" autocomplete="off">

View File

@ -166,6 +166,7 @@ export const HelpLinks = {
templateNotifications: helpBaseUrl + '/docs/user-guide/notifications/#templates', templateNotifications: helpBaseUrl + '/docs/user-guide/notifications/#templates',
recipientNotifications: helpBaseUrl + '/docs/user-guide/notifications/#recipients', recipientNotifications: helpBaseUrl + '/docs/user-guide/notifications/#recipients',
ruleNotifications: helpBaseUrl + '/docs/user-guide/notifications/#rules', ruleNotifications: helpBaseUrl + '/docs/user-guide/notifications/#rules',
jwtSecuritySettings: helpBaseUrl + '/docs/user-guide/ui/jwt-security-settings/',
} }
}; };