Commit 6a82632b authored by Douwe Maan's avatar Douwe Maan

Apply GroupUrlConstrainer to all routes with group IDs

parent 50891701
...@@ -2,87 +2,87 @@ require 'constraints/group_url_constrainer' ...@@ -2,87 +2,87 @@ require 'constraints/group_url_constrainer'
resources :groups, only: [:index, :new, :create] resources :groups, only: [:index, :new, :create]
scope(path: 'groups/*id', constraints(GroupUrlConstrainer.new) do
controller: :groups, scope(path: 'groups/*id',
constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ }) do controller: :groups,
get :edit, as: :edit_group constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ }) do
get :issues, as: :issues_group get :edit, as: :edit_group
get :merge_requests, as: :merge_requests_group get :issues, as: :issues_group
get :projects, as: :projects_group get :merge_requests, as: :merge_requests_group
get :activity, as: :activity_group get :projects, as: :projects_group
get :subgroups, as: :subgroups_group get :activity, as: :activity_group
get '/', action: :show, as: :group_canonical get :subgroups, as: :subgroups_group
end get '/', action: :show, as: :group_canonical
end
scope(path: 'groups/*group_id', scope(path: 'groups/*group_id',
module: :groups, module: :groups,
as: :group, as: :group,
constraints: { group_id: Gitlab::PathRegex.full_namespace_route_regex }) do constraints: { group_id: Gitlab::PathRegex.full_namespace_route_regex }) do
## EE-specific ## EE-specific
resource :analytics, only: [:show] resource :analytics, only: [:show]
resource :ldap, only: [] do resource :ldap, only: [] do
member do member do
put :sync put :sync
end
end end
end
resources :ldap_group_links, only: [:index, :create, :destroy] resources :ldap_group_links, only: [:index, :create, :destroy]
## EE-specific ## EE-specific
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do
post :resend_invite, on: :member
delete :leave, on: :collection
## EE-specific
patch :override, on: :member
## EE-specific
end
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do resource :avatar, only: [:destroy]
post :resend_invite, on: :member resources :milestones, constraints: { id: /[^\/]+/ }, only: [:index, :show, :edit, :update, :new, :create] do
delete :leave, on: :collection member do
get :merge_requests
get :participants
get :labels
end
end
## EE-specific ## EE-specific
patch :override, on: :member resource :notification_setting, only: [:update]
resources :audit_events, only: [:index]
resources :pipeline_quota, only: [:index]
## EE-specific ## EE-specific
end
resource :avatar, only: [:destroy] ## EE-specific
resources :milestones, constraints: { id: /[^\/]+/ }, only: [:index, :show, :edit, :update, :new, :create] do resources :hooks, only: [:index, :create, :destroy], constraints: { id: /\d+/ } do
member do member do
get :merge_requests get :test
get :participants end
get :labels
end end
end ## EE-specific
## EE-specific
resource :notification_setting, only: [:update]
resources :audit_events, only: [:index]
resources :pipeline_quota, only: [:index]
## EE-specific
## EE-specific resources :labels, except: [:show] do
resources :hooks, only: [:index, :create, :destroy], constraints: { id: /\d+/ } do post :toggle_subscription, on: :member
member do
get :test
end end
end
## EE-specific
resources :labels, except: [:show] do scope path: '-' do
post :toggle_subscription, on: :member namespace :settings do
end resource :ci_cd, only: [:show], controller: 'ci_cd'
end
scope path: '-' do resources :variables, only: [:index, :show, :update, :create, :destroy]
namespace :settings do resources :billings, only: [:index]
resource :ci_cd, only: [:show], controller: 'ci_cd'
end
resources :variables, only: [:index, :show, :update, :create, :destroy] ## EE-specific
resources :billings, only: [:index] resources :boards, only: [:index, :show, :create, :update, :destroy]
end
## EE-specific ## EE-specific
resources :boards, only: [:index, :show, :create, :update, :destroy] get :boards, to: redirect('/groups/%{group_id}/-/boards')
end
## EE-specific
get :boards, to: redirect('/groups/%{group_id}/-/boards')
end end
constraints(GroupUrlConstrainer.new) do
scope(path: '*id', scope(path: '*id',
as: :group, as: :group,
constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ }, constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment