summaryrefslogtreecommitdiff
path: root/app/models/ci/pipeline_chat_data.rb
blob: 65466a8c6f87fcd431e48c48d59e7f2a2a75c371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Ci
  class PipelineChatData < ApplicationRecord
    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