metamaps--metamaps/app/models/webhook.rb
2017-11-25 11:23:47 -08:00

15 lines
308 B
Ruby

# frozen_string_literal: true
class Webhook < ApplicationRecord
belongs_to :hookable, polymorphic: true
validates :uri, presence: true
validates :hookable, presence: true
validates :kind, inclusion: { in: %w(slack) }
validates :event_types, length: { minimum: 1 }
def headers
{}
end
end