Stop the onboarding flow from writing the user's company website into `accounts.domain`. That column is reserved for the inbound email domain used to construct reply-to addresses (`reply+<uuid>@<domain>`), and silently overloading it from onboarding was breaking email continuity for accounts whose domain MX didn't point at Chatwoot's inbound — customer replies were going to an unreachable address. The website value now lives in `custom_attributes.website`, which is what the rest of the app already treats as the "company website" field.
31 lines
1.8 KiB
Ruby
31 lines
1.8 KiB
Ruby
json.settings resource.settings
|
|
json.created_at resource.created_at
|
|
if resource.custom_attributes.present?
|
|
json.custom_attributes do
|
|
json.plan_name resource.custom_attributes['plan_name']
|
|
json.subscribed_quantity resource.custom_attributes['subscribed_quantity']
|
|
json.subscription_status resource.custom_attributes['subscription_status']
|
|
json.subscription_ends_on resource.custom_attributes['subscription_ends_on']
|
|
json.website resource.custom_attributes['website'] if resource.custom_attributes['website'].present?
|
|
json.industry resource.custom_attributes['industry'] if resource.custom_attributes['industry'].present?
|
|
json.company_size resource.custom_attributes['company_size'] if resource.custom_attributes['company_size'].present?
|
|
json.timezone resource.custom_attributes['timezone'] if resource.custom_attributes['timezone'].present?
|
|
json.logo resource.custom_attributes['logo'] if resource.custom_attributes['logo'].present?
|
|
json.referral_source resource.custom_attributes['referral_source'] if resource.custom_attributes['referral_source'].present?
|
|
json.brand_info resource.custom_attributes['brand_info'] if resource.custom_attributes['brand_info'].present?
|
|
json.onboarding_step resource.onboarding_step if resource.onboarding_step.present?
|
|
json.marked_for_deletion_at resource.custom_attributes['marked_for_deletion_at'] if resource.custom_attributes['marked_for_deletion_at'].present?
|
|
if resource.custom_attributes['marked_for_deletion_reason'].present?
|
|
json.marked_for_deletion_reason resource.custom_attributes['marked_for_deletion_reason']
|
|
end
|
|
end
|
|
end
|
|
json.domain @account.domain
|
|
json.features @account.enabled_features
|
|
json.id @account.id
|
|
json.locale @account.locale
|
|
json.name @account.name
|
|
json.support_email @account.support_email
|
|
json.status @account.status
|
|
json.cache_keys @account.cache_keys
|