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: 4a8c9c253634fdcd4704855f6a812316e788410d (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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