mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
<img width="1240" alt="Screenshot 2025-06-05 at 12 39 04 AM" src="https://github.com/user-attachments/assets/0071cd23-38c3-4638-946e-f1fbd11ec845" /> ## Changes Give the admins an option to delete conversation via the context menu - enable conversation deletion in routes and controller - expose delete API on conversations - add delete option in conversation context menu and integrate with card and list - implement store action and mutation for delete - update i18n with new strings fixes: https://github.com/chatwoot/chatwoot/issues/947 --------- Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav <pranavrajs@gmail.com>
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe ConversationPolicy, type: :policy do
|
|
subject { described_class }
|
|
|
|
let(:account) { create(:account) }
|
|
let(:conversation) { create(:conversation, account: account) }
|
|
let(:administrator) { create(:user, account: account, role: :administrator) }
|
|
let(:agent) { create(:user, account: account, role: :agent) }
|
|
let(:administrator_context) { { user: administrator, account: account, account_user: administrator.account_users.first } }
|
|
let(:agent_context) { { user: agent, account: account, account_user: agent.account_users.first } }
|
|
|
|
permissions :destroy? do
|
|
context 'when user is an administrator' do
|
|
it 'allows destroy' do
|
|
expect(subject).to permit(administrator_context, conversation)
|
|
end
|
|
end
|
|
|
|
context 'when user is an agent' do
|
|
it 'denies destroy' do
|
|
expect(subject).not_to permit(agent_context, conversation)
|
|
end
|
|
end
|
|
end
|
|
|
|
permissions :index? do
|
|
context 'when user is authenticated' do
|
|
it 'allows index' do
|
|
expect(subject).to permit(agent_context, conversation)
|
|
end
|
|
end
|
|
end
|
|
end
|