Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
53 lines
1.5 KiB
Ruby
53 lines
1.5 KiB
Ruby
class AdministratorNotifications::AccountComplianceMailer < AdministratorNotifications::BaseMailer
|
|
def account_deleted(account)
|
|
return if instance_admin_email.blank?
|
|
|
|
subject = subject_for(account)
|
|
meta = build_meta(account)
|
|
|
|
send_notification(subject, to: instance_admin_email, meta: meta)
|
|
end
|
|
|
|
private
|
|
|
|
def build_meta(account)
|
|
deleted_users = params[:soft_deleted_users] || []
|
|
|
|
user_info_list = deleted_users.map do |user|
|
|
{
|
|
'user_id' => user[:id].to_s,
|
|
'user_email' => user[:original_email].to_s
|
|
}
|
|
end
|
|
|
|
{
|
|
'instance_url' => instance_url,
|
|
'account_id' => account.id,
|
|
'account_name' => account.name,
|
|
'deleted_at' => format_time(Time.current.iso8601),
|
|
'deletion_reason' => account.custom_attributes['marked_for_deletion_reason'] || 'not specified',
|
|
'marked_for_deletion_at' => format_time(account.custom_attributes['marked_for_deletion_at']),
|
|
'soft_deleted_users' => user_info_list,
|
|
'deleted_user_count' => user_info_list.size
|
|
}
|
|
end
|
|
|
|
def format_time(time_string)
|
|
return 'not specified' if time_string.blank?
|
|
|
|
Time.zone.parse(time_string).strftime('%B %d, %Y %H:%M:%S %Z')
|
|
end
|
|
|
|
def subject_for(account)
|
|
"Account Deletion Notice for #{account.id} - #{account.name}"
|
|
end
|
|
|
|
def instance_admin_email
|
|
GlobalConfig.get('CHATWOOT_INSTANCE_ADMIN_EMAIL')['CHATWOOT_INSTANCE_ADMIN_EMAIL']
|
|
end
|
|
|
|
def instance_url
|
|
ENV.fetch('FRONTEND_URL', 'not available')
|
|
end
|
|
end
|