chinwagsocial/app/models/application_record.rb

18 lines
280 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-18 01:56:23 +10:00
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
include Remotable
def boolean_with_default(key, default_value)
value = attributes[key]
if value.nil?
default_value
else
value
end
end
2016-08-18 01:56:23 +10:00
end