Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Ivan Vargas <jvargas@gitlab.com>2017-01-20 01:11:48 +0300
committerJose Ivan Vargas <jvargas@gitlab.com>2017-01-20 01:11:48 +0300
commit8f391fd373a3789b021d07bb23dc837e91c65da2 (patch)
tree2da3855c03b945b7d0db11e0b21e602ef171f879 /app/views/projects/hooks
parent7b3ea49a4449686e512a5236c2d4073641afce77 (diff)
Renamed a file to make the transition to EE easier
Diffstat (limited to 'app/views/projects/hooks')
-rw-r--r--app/views/projects/hooks/_project_hook.html.haml15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/views/projects/hooks/_project_hook.html.haml b/app/views/projects/hooks/_project_hook.html.haml
deleted file mode 100644
index 5a22e6cdf99..00000000000
--- a/app/views/projects/hooks/_project_hook.html.haml
+++ /dev/null
@@ -1,15 +0,0 @@
-%li
- .row
- .col-md-8.col-lg-7
- %strong.light-header= hook.url
- %div
- - %w(push_events tag_push_events issues_events confidential_issues_events note_events merge_requests_events build_events pipeline_events wiki_page_events).each do |trigger|
- - if hook.send(trigger)
- %span.label.label-gray.deploy-project-label= trigger.titleize
- .col-md-4.col-lg-5.text-right-lg.prepend-top-5
- %span.append-right-10.inline
- SSL Verification: #{hook.enable_ssl_verification ? "enabled" : "disabled"}
- = link_to "Test", test_namespace_project_hook_path(@project.namespace, @project, hook), class: "btn btn-sm"
- = link_to namespace_project_settings_integrations_path(@project.namespace, @project, hook), data: { confirm: 'Are you sure?'}, method: :delete, class: "btn btn-transparent" do
- %span.sr-only Remove
- = icon('trash')