mastodon/app/models/application_record.rb

18 lines
280 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-17 17:56:23 +02: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-17 17:56:23 +02:00
end