debian-mirror-gitlab/lib/gitlab/ci/status/build/retryable.rb

36 lines
749 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module Gitlab
module Ci
module Status
module Build
class Retryable < Status::Extended
def has_action?
can?(user, :update_build, subject)
end
def action_icon
'icon_action_retry'
end
def action_title
'Retry'
end
def action_path
retry_namespace_project_build_path(subject.project.namespace,
subject.project,
subject)
end
def action_method
:post
end
def self.matches?(build, user)
build.retryable?
end
end
end
end
end
end