summaryrefslogtreecommitdiff
path: root/app/views/ci
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-10-28 12:33:54 +0100
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-10-28 12:33:54 +0100
commitc9af886df9b83e7f3f9b131f19184546fbeac9de (patch)
treece48e418880c4ced5fffc7e4ef3d33c314b7afcd /app/views/ci
parentb6d1d25d43fc562fd3a05ae67da7de01f7d36206 (diff)
downloadgitlab-ce-c9af886df9b83e7f3f9b131f19184546fbeac9de.tar.gz
Remove deprecated CI events from project settings page
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/ci')
-rw-r--r--app/views/ci/events/index.html.haml20
1 files changed, 0 insertions, 20 deletions
diff --git a/app/views/ci/events/index.html.haml b/app/views/ci/events/index.html.haml
deleted file mode 100644
index 9824e85b1af..00000000000
--- a/app/views/ci/events/index.html.haml
+++ /dev/null
@@ -1,20 +0,0 @@
-%h3.page-title Events
-
-.table-holder
- %table.table
- %thead
- %tr
- %th User ID
- %th Description
- %th When
- - @events.each do |event|
- %tr
- %td
- = event.user_id
- %td
- = event.description
- %td.light
- = time_ago_in_words event.updated_at
- ago
-
-= paginate @events