Commit a2655e3f authored by Alexis Reigel's avatar Alexis Reigel

use sentence case for "Merge request events"

parent 630c3380
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
= form.check_box :merge_requests_events, class: 'pull-left' = form.check_box :merge_requests_events, class: 'pull-left'
.prepend-left-20 .prepend-left-20
= form.label :merge_requests_events, class: 'list-label' do = form.label :merge_requests_events, class: 'list-label' do
%strong Merge Request events %strong Merge request events
%p.light %p.light
This URL will be triggered when a merge request is created/updated/merged This URL will be triggered when a merge request is created/updated/merged
.form-group .form-group
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
= form.check_box :merge_requests_events, class: 'pull-left' = form.check_box :merge_requests_events, class: 'pull-left'
.prepend-left-20 .prepend-left-20
= form.label :merge_requests_events, class: 'list-label' do = form.label :merge_requests_events, class: 'list-label' do
%strong Merge Request events %strong Merge request events
%p.light %p.light
This URL will be triggered when a merge request is created/updated/merged This URL will be triggered when a merge request is created/updated/merged
%li %li
......
...@@ -65,7 +65,7 @@ Below is the table of events users can be notified of: ...@@ -65,7 +65,7 @@ Below is the table of events users can be notified of:
| Group access level changed | User | Sent when user group access level is changed | | Group access level changed | User | Sent when user group access level is changed |
| Project moved | Project members [1] | [1] not disabled | | Project moved | Project members [1] | [1] not disabled |
### Issue / Merge Request events ### Issue / Merge request events
In all of the below cases, the notification will be sent to: In all of the below cases, the notification will be sent to:
- Participants: - Participants:
......
...@@ -105,7 +105,7 @@ describe 'Admin::Hooks' do ...@@ -105,7 +105,7 @@ describe 'Admin::Hooks' do
fill_in 'hook_url', with: url fill_in 'hook_url', with: url
uncheck 'Repository update events' uncheck 'Repository update events'
check 'Merge Request events' check 'Merge request events'
expect { click_button 'Add system hook' }.to change(SystemHook, :count).by(1) expect { click_button 'Add system hook' }.to change(SystemHook, :count).by(1)
expect(current_path).to eq(admin_hooks_path) expect(current_path).to eq(admin_hooks_path)
......
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