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: 650ec97c2641422d8a657ebdbfb57a4b699713cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Organizations
  class OrganizationsController < ApplicationController
    feature_category :cell

    before_action { authorize_action!(:read_organization) }

    def show; end

    def groups_and_projects; end
  end
end