Commit 9401ebc5 authored by Valery Sizov's avatar Valery Sizov

Webhook name consistency

parent b6608854
...@@ -25,10 +25,10 @@ ...@@ -25,10 +25,10 @@
%span %span
LDAP Groups LDAP Groups
= nav_link(controller: :hooks) do = nav_link(controller: :hooks) do
= link_to group_hooks_path(@group), title: "Web Hooks" do = link_to group_hooks_path(@group), title: "Webhooks" do
%i.fa.fa-link %i.fa.fa-link
%span %span
Web Hooks Webhooks
= nav_link(controller: :audit_events) do = nav_link(controller: :audit_events) do
= link_to group_audit_events_path(@group), title: "Audit Events" do = link_to group_audit_events_path(@group), title: "Audit Events" do
%i.fa.fa-file-text-o %i.fa.fa-file-text-o
......
...@@ -14,7 +14,7 @@ Webhooks can be used to update an external issue tracker, trigger CI builds, upd ...@@ -14,7 +14,7 @@ Webhooks can be used to update an external issue tracker, trigger CI builds, upd
In GitLab Enterprise Edition you can configure web hooks globally for the whole In GitLab Enterprise Edition you can configure web hooks globally for the whole
group. You can add the group level web hooks on the group settings page group. You can add the group level web hooks on the group settings page
**Settings > Web Hooks**. **Settings > Webhooks**.
## SSL Verification ## SSL Verification
......
...@@ -10,9 +10,9 @@ Feature: Group Active Tab ...@@ -10,9 +10,9 @@ Feature: Group Active Tab
And no other sub navs should be active And no other sub navs should be active
And the active main tab should be Settings And the active main tab should be Settings
Scenario: On Web Hooks Scenario: On Webhooks
When I go to "Web Hooks" When I go to "Webhooks"
Then the active sub nav should be Web Hooks Then the active sub nav should be Webhooks
And no other sub navs should be active And no other sub navs should be active
And the active main tab should be Settings And the active main tab should be Settings
...@@ -15,15 +15,15 @@ class Spinach::Features::GroupActiveTab < Spinach::FeatureSteps ...@@ -15,15 +15,15 @@ class Spinach::Features::GroupActiveTab < Spinach::FeatureSteps
end end
end end
step 'the active sub nav should be Web Hooks' do step 'the active sub nav should be Webhooks' do
ensure_active_sub_nav('Web Hooks') ensure_active_sub_nav('Webhooks')
end end
step 'I go to "Audit Events"' do step 'I go to "Audit Events"' do
click_link 'Audit Events' click_link 'Audit Events'
end end
step 'I go to "Web Hooks"' do step 'I go to "Webhooks"' do
click_link 'Web Hooks' click_link 'Webhooks'
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment