2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-17 17:56:23 +02:00
|
|
|
class ApplicationRecord < ActiveRecord::Base
|
|
|
|
self.abstract_class = true
|
2019-08-05 19:54:29 +02:00
|
|
|
|
2018-03-26 14:02:10 +02:00
|
|
|
include Remotable
|
2019-08-05 19:54:29 +02:00
|
|
|
|
2023-07-21 11:30:53 +02:00
|
|
|
connects_to database: { writing: :primary, reading: ENV['DB_REPLICA_NAME'] || ENV['READ_DATABASE_URL'] ? :read : :primary }
|
2023-07-17 08:26:52 +02:00
|
|
|
|
2019-10-01 01:19:11 +02:00
|
|
|
class << self
|
|
|
|
def update_index(_type_name, *_args, &_block)
|
|
|
|
super if Chewy.enabled?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-05 19:54:29 +02:00
|
|
|
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
|