2016-03-12 23:36:38 +00:00
|
|
|
class Webhook < ActiveRecord::Base
|
|
|
|
belongs_to :hookable, polymorphic: true
|
|
|
|
|
|
|
|
validates :uri, presence: true
|
|
|
|
validates :hookable, presence: true
|
2016-07-26 00:14:23 +00:00
|
|
|
validates :kind, inclusion: { in: %w(slack) }
|
2016-03-12 23:36:38 +00:00
|
|
|
validates :event_types, length: { minimum: 1 }
|
|
|
|
|
|
|
|
def headers
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
end
|