mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
- Audit log for user invitations: https://linear.app/chatwoot/issue/CW-1768/invited-a-user-to-the-account - Audit log for change role: https://linear.app/chatwoot/issue/CW-1767/name-or-email-changed-the-role-of-the-user-email-to-agent-or-admin - Audit log for status change: https://linear.app/chatwoot/issue/CW-1766/availability-status-as-events-for-audit-logs Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
35 lines
1.0 KiB
Ruby
35 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe AccountUser do
|
|
include ActiveJob::TestHelper
|
|
|
|
let!(:account_user) { create(:account_user) }
|
|
let!(:inbox) { create(:inbox, account: account_user.account) }
|
|
|
|
describe 'notification_settings' do
|
|
it 'gets created with the right default settings' do
|
|
expect(account_user.user.notification_settings).not_to be_nil
|
|
|
|
expect(account_user.user.notification_settings.first.email_conversation_creation?).to be(false)
|
|
expect(account_user.user.notification_settings.first.email_conversation_assignment?).to be(true)
|
|
end
|
|
end
|
|
|
|
describe 'destroy call agent::destroy service' do
|
|
it 'gets created with the right default settings' do
|
|
create(:conversation, account: account_user.account, assignee: account_user.user, inbox: inbox)
|
|
user = account_user.user
|
|
|
|
expect(user.assigned_conversations.count).to eq(1)
|
|
|
|
perform_enqueued_jobs do
|
|
account_user.destroy!
|
|
end
|
|
|
|
expect(user.assigned_conversations.count).to eq(0)
|
|
end
|
|
end
|
|
end
|