* Chore: Feature lock email settings in UI The email settings under account settings needed to be feature locked in a way different from teh current way for it to be enabled for accounts in a self hosted scenario. Some refactorings were also done along with this change. 1. There was a feature flag defined in code in account model called domain_emails_enabled was used to check if the inbound emails was enabled for the account. But there was already a feature flag called "inbound_emails" defined in features.yml. So changed to use this to check if inbound emails are enabled for an account. 2. Renamed and re-purposed existing `domain_emails_enabled` to `custom_email_domain_enabled` to use for feature toggling the UI for email settings. 3. To enable & disable multiple features using the featurable concern we were passing an array of values. Changed this to accept a comma separated set of values. * Chore: Feature lock email settings in UI Fixed the specs for accounts controller & removed unneccessary code from Account seetings component in UI * Chore: Convert newlines to <br>s Removed the layout used while sending replies in conversation continuity. Converted the newlines in the messages to <br/> tags for the correct HTML rendering. * Chore: Bug fix in reply email domain Renamed the function custom_email_domain_enabled to inbound_email_enabled. Fixed bug on setting reply emails's domain.
61 lines
1.4 KiB
Ruby
61 lines
1.4 KiB
Ruby
module Featurable
|
|
extend ActiveSupport::Concern
|
|
|
|
QUERY_MODE = {
|
|
flag_query_mode: :bit_operator
|
|
}.freeze
|
|
|
|
FEATURE_LIST = YAML.safe_load(File.read(Rails.root.join('config/features.yml'))).freeze
|
|
|
|
FEATURES = FEATURE_LIST.each_with_object({}) do |feature, result|
|
|
result[result.keys.size + 1] = "feature_#{feature['name']}".to_sym
|
|
end
|
|
|
|
included do
|
|
include FlagShihTzu
|
|
has_flags FEATURES.merge(column: 'feature_flags').merge(QUERY_MODE)
|
|
|
|
before_create :enable_default_features
|
|
end
|
|
|
|
def enable_features(*names)
|
|
names.each do |name|
|
|
send("feature_#{name}=", true)
|
|
end
|
|
end
|
|
|
|
def disable_features(*names)
|
|
names.each do |name|
|
|
send("feature_#{name}=", false)
|
|
end
|
|
end
|
|
|
|
def feature_enabled?(name)
|
|
send("feature_#{name}?")
|
|
end
|
|
|
|
def all_features
|
|
FEATURE_LIST.map { |f| f['name'] }.index_with do |feature_name|
|
|
feature_enabled?(feature_name)
|
|
end
|
|
end
|
|
|
|
def enabled_features
|
|
all_features.select { |_feature, enabled| enabled == true }
|
|
end
|
|
|
|
def disabled_features
|
|
all_features.select { |_feature, enabled| enabled == false }
|
|
end
|
|
|
|
private
|
|
|
|
def enable_default_features
|
|
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
|