summaryrefslogtreecommitdiff
path: root/app/views/shared/web_hooks/_title_and_docs.html.haml
blob: f00f3473efad64f997dc5689120eb90f1bc84dcb (plain)
1
2
3
4
5
6
7
8
9
10
- webhooks_link_start = '<a href="%{url}">'.html_safe % { url: help_page_path(hook.help_path) }

%h4.gl-mt-0
  = page_title

- if @project
  - integrations_link_start = '<a href="%{url}">'.html_safe % { url: scoped_integrations_path }
  %p= _("%{webhooks_link_start}%{webhook_type}%{link_end} enable you to send notifications to web applications in response to events in a group or project. We recommend using an %{integrations_link_start}integration%{link_end} in preference to a webhook.").html_safe % { webhooks_link_start: webhooks_link_start, webhook_type: hook.pluralized_name, integrations_link_start: integrations_link_start, link_end: '</a>'.html_safe }
- else
  %p= _("%{webhooks_link_start}%{webhook_type}%{link_end} enable you to send notifications to web applications in response to events in a group or project.").html_safe % { webhooks_link_start: webhooks_link_start, webhook_type: hook.pluralized_name, link_end: '</a>'.html_safe }