summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/incidents_settings/constants.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/incidents_settings/constants.js')
-rw-r--r--app/assets/javascripts/incidents_settings/constants.js35
1 files changed, 1 insertions, 34 deletions
diff --git a/app/assets/javascripts/incidents_settings/constants.js b/app/assets/javascripts/incidents_settings/constants.js
index d479838b491..54e4bab6c10 100644
--- a/app/assets/javascripts/incidents_settings/constants.js
+++ b/app/assets/javascripts/incidents_settings/constants.js
@@ -3,11 +3,6 @@ import { __, s__ } from '~/locale';
/* Integration tabs constants */
export const INTEGRATION_TABS_CONFIG = [
{
- title: s__('IncidentSettings|Alert integration'),
- component: 'AlertsSettingsForm',
- active: true,
- },
- {
title: s__('IncidentSettings|PagerDuty integration'),
component: 'PagerDutySettingsForm',
active: true,
@@ -23,38 +18,10 @@ export const I18N_INTEGRATION_TABS = {
headerText: s__('IncidentSettings|Incidents'),
expandBtnLabel: __('Expand'),
subHeaderText: s__(
- 'IncidentSettings|Set up integrations with external tools to help better manage incidents.',
+ 'IncidentSettings|Fine-tune incident settings and set up integrations with external tools to help better manage incidents.',
),
};
-/* Alerts integration settings constants */
-
-export const I18N_ALERT_SETTINGS_FORM = {
- saveBtnLabel: __('Save changes'),
- introText: __('Action to take when receiving an alert. %{docsLink}'),
- introLinkText: __('More information.'),
- createIncident: {
- label: __('Create an incident. Incidents are created for each alert triggered.'),
- },
- incidentTemplate: {
- label: __('Incident template (optional)'),
- },
- sendEmail: {
- label: __('Send a single email notification to Owners and Maintainers for new alerts.'),
- },
- autoCloseIncidents: {
- label: __(
- 'Automatically close associated incident when a recovery alert notification resolves an alert',
- ),
- },
-};
-
-export const NO_ISSUE_TEMPLATE_SELECTED = { key: '', name: __('No template selected') };
-export const TAKING_INCIDENT_ACTION_DOCS_LINK =
- '/help/operations/metrics/alerts#trigger-actions-from-alerts';
-export const ISSUE_TEMPLATES_DOCS_LINK =
- '/help/user/project/description_templates#create-an-issue-template';
-
/* PagerDuty integration settings constants */
export const I18N_PAGERDUTY_SETTINGS_FORM = {