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

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

module Admin
  class AbuseReportLabelPolicy < ::BasePolicy
    rule { admin }.policy do
      enable :read_label
    end
  end
end