2d19b1adef
ChatOps used to be in the Ultimate tier.
13 lines
302 B
Ruby
13 lines
302 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class PipelineChatData < ActiveRecord::Base
|
|
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
|