Welcome to mirror list, hosted at ThFree Co, Russian Federation.

abuse_report_policy.rb « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 043dbd0cb8978a3050da5fb1e790311c9a59010c (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AbuseReportPolicy < ::BasePolicy
  rule { admin }.policy do
    enable :read_abuse_report
    enable :create_note
  end
end