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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes/organizations.rb')
-rw-r--r--config/routes/organizations.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/routes/organizations.rb b/config/routes/organizations.rb
index 6f44eeb0d82..d53cfdf1a4e 100644
--- a/config/routes/organizations.rb
+++ b/config/routes/organizations.rb
@@ -4,9 +4,13 @@ resources(
:organizations,
only: [:show, :index, :new],
param: :organization_path,
- controller: 'organizations/organizations'
+ module: :organizations
) do
member do
get :groups_and_projects
+
+ resource :settings, only: [], as: :settings_organization do
+ get :general
+ end
end
end