From 96efc44b8271313bcdf80f928e2f4dffb017f1ec Mon Sep 17 00:00:00 2001 From: Sony Mathew Date: Sun, 19 Jul 2020 23:08:07 +0530 Subject: [PATCH] Chore: Feature lock email settings in UI (#1065) * 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
s Removed the layout used while sending replies in conversation continuity. Converted the newlines in the messages to
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. --- app/controllers/api/v1/accounts_controller.rb | 4 +- .../i18n/locale/en/generalSettings.json | 15 +++---- .../dashboard/settings/account/Index.vue | 44 +++++++------------ app/mailers/conversation_reply_mailer.rb | 20 ++++++--- app/models/account.rb | 2 +- app/models/concerns/featurable.rb | 4 +- app/views/api/v1/accounts/show.json.jbuilder | 2 +- .../api/v1/accounts/update.json.jbuilder | 2 +- .../reply_without_summary.html.erb | 2 +- ...709145000_remove_multiple_feature_flags.rb | 4 +- .../api/v1/accounts_controller_spec.rb | 4 +- spec/factories/accounts.rb | 2 +- .../mailers/conversation_reply_mailer_spec.rb | 2 +- 13 files changed, 47 insertions(+), 60 deletions(-) diff --git a/app/controllers/api/v1/accounts_controller.rb b/app/controllers/api/v1/accounts_controller.rb index 3fb0509e3..cf60de614 100644 --- a/app/controllers/api/v1/accounts_controller.rb +++ b/app/controllers/api/v1/accounts_controller.rb @@ -32,7 +32,7 @@ class Api::V1::AccountsController < Api::BaseController end def update - @account.update!(account_params.slice(:name, :locale, :domain, :support_email, :domain_emails_enabled)) + @account.update!(account_params.slice(:name, :locale, :domain, :support_email)) end def update_active_at @@ -57,7 +57,7 @@ class Api::V1::AccountsController < Api::BaseController end def account_params - params.permit(:account_name, :email, :name, :locale, :domain, :support_email, :domain_emails_enabled) + params.permit(:account_name, :email, :name, :locale, :domain, :support_email) end def check_signup_enabled diff --git a/app/javascript/dashboard/i18n/locale/en/generalSettings.json b/app/javascript/dashboard/i18n/locale/en/generalSettings.json index 31b5f9fe2..0a3fc0b8e 100644 --- a/app/javascript/dashboard/i18n/locale/en/generalSettings.json +++ b/app/javascript/dashboard/i18n/locale/en/generalSettings.json @@ -24,8 +24,8 @@ "ERROR": "" }, "DOMAIN": { - "LABEL": "Domain", - "PLACEHOLDER": "Your website domain", + "LABEL": "Incoming Email Domain", + "PLACEHOLDER": "The domain where you will receive the emails", "ERROR": "" }, "SUPPORT_EMAIL": { @@ -33,14 +33,9 @@ "PLACEHOLDER": "Your company's support email", "ERROR": "" }, - "ENABLE_DOMAIN_EMAIL": { - "LABEL": "Enable domain email", - "PLACEHOLDER": "Enable the custom domain email", - "ERROR": "", - "OPTIONS": { - "ENABLED": "Enabled", - "DISABLED": "Disabled" - } + "FEATURES": { + "INBOUND_EMAIL_ENABLED": "Conversation continuity with emails is enabled for your account.", + "CUSTOM_EMAIL_DOMAIN_ENABLED": "You can receive emails in your custom domain now." } } } diff --git a/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue b/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue index d8d86a052..8ade5fd8e 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/account/Index.vue @@ -36,7 +36,15 @@ {{ $t('GENERAL_SETTINGS.FORM.LANGUAGE.ERROR') }} -