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

pipeline_schedule_variable.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ff177616e8a3a39e7f055b1907d4e958fc413df (plain)
1
2
3
4
5
6
7
8
module Ci
  class PipelineScheduleVariable < ActiveRecord::Base
    extend Ci::Model
    include HasVariable

    belongs_to :pipeline_schedule
  end
end