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

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

module Organizations
  class OrganizationsController < ApplicationController
    feature_category :cell

    before_action { authorize_action!(:admin_organization) }

    def directory; end
  end
end