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: f1f994e6a4291dbe25c61a5d53a96ac8a01624ad (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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