diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-12-15 22:06:59 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-12-15 22:06:59 +0100 |
commit | a85235b824cd4cf791a10dc69f64732d971bf323 (patch) | |
tree | e422373f26d6d256d71f9ca47116eaf5e041829f | |
parent | b2508cbdaf600bbb8fb2fd56c9891304502429b3 (diff) | |
download | gitlab-ce-a85235b824cd4cf791a10dc69f64732d971bf323.tar.gz |
Remove unused updated_at
-rw-r--r-- | app/controllers/projects/pipelines_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/controllers/projects/pipelines_controller.rb b/app/controllers/projects/pipelines_controller.rb index 642651101f0..9f3702f9f19 100644 --- a/app/controllers/projects/pipelines_controller.rb +++ b/app/controllers/projects/pipelines_controller.rb @@ -27,7 +27,6 @@ class Projects::PipelinesController < Projects::ApplicationController .new(project: @project, user: @current_user) .with_pagination(request, response) .represent(@pipelines), - updated_at: Time.now.utc, count: { all: @pipelines_count, running_or_pending: @running_or_pending_count |