* Renamed concern from Feature to Featurable * Feature: Installation config (#839) * Added new model installtion config with corresponding migrations and specs * Created an installation config yml (key value store model) * Created a config loader module to load the installaltion configs * Added this to the config loader seeder * Changed the account before create hook for default feature enabling to use the feature values from installtion config * Renamed the feature concern to Featurable to follow the naming pattern for concerns * Added comments and specs for modules and places that deemed necessary * Refactored config loader to reduce cognitive complexity (#839)
This commit is contained in:
@@ -19,7 +19,7 @@ class Account < ApplicationRecord
|
||||
|
||||
include Events::Types
|
||||
include Reportable
|
||||
include Features
|
||||
include Featurable
|
||||
|
||||
DEFAULT_QUERY_SETTING = {
|
||||
flag_query_mode: :bit_operator
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
module Features
|
||||
module Featurable
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
QUERY_MODE = {
|
||||
@@ -51,7 +51,10 @@ module Features
|
||||
private
|
||||
|
||||
def enable_default_features
|
||||
features_to_enabled = FEATURE_LIST.select { |f| f['enabled'] }.map { |f| f['name'] }
|
||||
config = InstallationConfig.find_by(name: 'ACCOUNT_LEVEL_FEATURE_DEFAULTS')
|
||||
return true if config.blank?
|
||||
|
||||
features_to_enabled = config.value.select { |f| f[:enabled] }.map { |f| f[:name] }
|
||||
enable_features(features_to_enabled)
|
||||
end
|
||||
end
|
||||
31
app/models/installation_config.rb
Normal file
31
app/models/installation_config.rb
Normal file
@@ -0,0 +1,31 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: installation_configs
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# name :string not null
|
||||
# serialized_value :jsonb not null
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_installation_configs_on_name_and_created_at (name,created_at) UNIQUE
|
||||
#
|
||||
class InstallationConfig < ApplicationRecord
|
||||
serialize :serialized_value, HashWithIndifferentAccess
|
||||
|
||||
validates :name, presence: true
|
||||
|
||||
default_scope { order(created_at: :desc) }
|
||||
|
||||
def value
|
||||
serialized_value[:value]
|
||||
end
|
||||
|
||||
def value=(value_to_assigned)
|
||||
self.serialized_value = {
|
||||
value: value_to_assigned
|
||||
}.with_indifferent_access
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user