mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
- Removes the portal_members table and all associated records - Updates policies to use custom roles with knowledge_base_manage permission - Updates controllers, models, and views to work without portal membership - Adds tests for the new permission model
26 lines
823 B
Ruby
26 lines
823 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe ReportPolicy, type: :policy do
|
|
subject(:report_policy) { described_class }
|
|
|
|
let(:account) { create(:account) }
|
|
let(:administrator) { create(:user, :administrator, account: account) }
|
|
let(:agent) { create(:user, account: account) }
|
|
let(:report) { :report }
|
|
|
|
let(:administrator_context) { { user: administrator, account: account, account_user: account.account_users.first } }
|
|
let(:agent_context) { { user: agent, account: account, account_user: account.account_users.first } }
|
|
|
|
permissions :view? do
|
|
context 'when administrator' do
|
|
it { expect(report_policy).to permit(administrator_context, report) }
|
|
end
|
|
|
|
context 'when agent' do
|
|
it { expect(report_policy).not_to permit(agent_context, report) }
|
|
end
|
|
end
|
|
end
|