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:
Diffstat (limited to 'app/presenters/ci/build_presenter.rb')
-rw-r--r--app/presenters/ci/build_presenter.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/presenters/ci/build_presenter.rb b/app/presenters/ci/build_presenter.rb
index be6cc2e70b1..9345e5069bc 100644
--- a/app/presenters/ci/build_presenter.rb
+++ b/app/presenters/ci/build_presenter.rb
@@ -1,12 +1,6 @@
module Ci
class BuildPresenter < Gitlab::View::Presenter::Delegated
- TIMEOUT_SOURCES = {
- unknown_timeout_source: nil,
- project_timeout_source: 'project',
- runner_timeout_source: 'runner'
- }.freeze
-
presents :build
def erased_by_user?
@@ -25,13 +19,6 @@ module Ci
end
end
- def timeout_source
- return unless build.timeout_source?
-
- TIMEOUT_SOURCES[build.timeout_source.to_sym] ||
- build.timeout_source
- end
-
def trigger_variables
return [] unless trigger_request