UI: Add help button for notifications dialog

This commit is contained in:
Artem Dzhereleiko 2023-04-21 15:30:27 +03:00
parent be4fb2c123
commit ca397f7cc9
5 changed files with 9 additions and 1 deletions

View File

@ -19,6 +19,7 @@
<mat-toolbar color="primary">
<h2>{{ (isAdd ? 'notification.add-notification-recipients-group' : 'notification.edit-notification-recipients-group') | translate }}</h2>
<span fxFlex></span>
<div tb-help="recipientNotifications"></div>
<button mat-icon-button
(click)="cancel()"
type="button">

View File

@ -18,6 +18,7 @@
<mat-toolbar color="primary">
<h2>{{ dialogTitle | translate }}</h2>
<span fxFlex></span>
<div tb-help="ruleNotifications"></div>
<button mat-icon-button
(click)="cancel()"
type="button">

View File

@ -18,6 +18,7 @@
<mat-toolbar color="primary">
<h2>{{ dialogTitle | translate }}</h2>
<span fxFlex></span>
<div tb-help="sentNotification"></div>
<button mat-icon-button
(click)="cancel()"
type="button">

View File

@ -18,6 +18,7 @@
<mat-toolbar color="primary">
<h2>{{ dialogTitle | translate }}</h2>
<span fxFlex></span>
<div tb-help="templateNotifications"></div>
<button mat-icon-button
(click)="cancel()"
type="button">

View File

@ -160,7 +160,11 @@ export const HelpLinks = {
queue: helpBaseUrl + '/docs/user-guide/queue',
repositorySettings: helpBaseUrl + '/docs/user-guide/version-control/#git-settings-configuration',
autoCommitSettings: helpBaseUrl + '/docs/user-guide/version-control/#auto-commit',
twoFactorAuthentication: helpBaseUrl + '/docs/user-guide/two-factor-authentication'
twoFactorAuthentication: helpBaseUrl + '/docs/user-guide/two-factor-authentication',
sentNotification: helpBaseUrl + '/docs/user-guide/notifications/#send-notification',
templateNotifications: helpBaseUrl + '/docs/user-guide/notifications/#templates',
recipientNotifications: helpBaseUrl + '/docs/user-guide/notifications/#recipients',
ruleNotifications: helpBaseUrl + '/docs/user-guide/notifications/#rules',
}
};