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

pipeline_chat_data.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba20c993e362fcc74d1d06fd7658649a8119eced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Ci
  class PipelineChatData < Ci::ApplicationRecord
    include Ci::NamespacedModelName

    self.table_name = 'ci_pipeline_chat_data'

    belongs_to :chat_name

    validates :pipeline_id, presence: true
    validates :chat_name_id, presence: true
    validates :response_url, presence: true
  end
end