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

resources(
  :organizations,
  only: [:show, :index, :new],
  param: :organization_path,
  controller: 'organizations/organizations'
) do
  member do
    get :groups_and_projects
  end
end