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

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

module Organizations
  class OrganizationPolicy < BasePolicy
    rule { admin }.policy do
      enable :admin_organization
    end
  end
end