e1a3bf30b6
This cop has been renamed to ActiveRecordSerialize to match the way "ActiveRecord" is usually written.
13 lines
390 B
Ruby
13 lines
390 B
Ruby
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
|