debian-mirror-gitlab/app/models/hooks/web_hook_log.rb

14 lines
390 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
class WebHookLog < ActiveRecord::Base
belongs_to :web_hook
serialize :request_headers, Hash # rubocop:disable Cop/ActiveRecordSerialize
serialize :request_data, Hash # rubocop:disable Cop/ActiveRecordSerialize
serialize :response_headers, Hash # rubocop:disable Cop/ActiveRecordSerialize
validates :web_hook, presence: true
def success?
response_status =~ /^2/
end
end