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

unschedule.rb « build « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1b7b83428c57e4779c6aa326cc7527a293ed740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module Gitlab
  module Ci
    module Status
      module Build
        class Unschedule < Status::Extended
          def label
            'unschedule action'
          end

          def has_action?
            can?(user, :update_build, subject)
          end

          def action_icon
            'time-out'
          end

          def action_title
            'Unschedule'
          end

          def action_button_title
            _('Unschedule job')
          end

          def action_path
            unschedule_project_job_path(subject.project, subject)
          end

          def action_method
            :post
          end

          def self.matches?(build, user)
            build.scheduled?
          end
        end
      end
    end
  end
end