Files
chatwoot/app/policies/report_policy.rb
Sojan Jose 1a78a9243f chore: Clean up report & knowledge base policies (#11234)
- 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
2025-04-03 16:00:32 -07:00

8 lines
141 B
Ruby

class ReportPolicy < ApplicationPolicy
def view?
@account_user.administrator?
end
end
ReportPolicy.prepend_mod_with('ReportPolicy')