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

organizations.rb « routes « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d53cfdf1a4e55c4d8a3fa59d892095878131040d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

resources(
  :organizations,
  only: [:show, :index, :new],
  param: :organization_path,
  module: :organizations
) do
  member do
    get :groups_and_projects

    resource :settings, only: [], as: :settings_organization do
      get :general
    end
  end
end