2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
# rubocop: disable Cop/PutGroupRoutesUnderScope
|
2018-03-17 18:26:18 +05:30
|
|
|
resources :groups, only: [:index, :new, :create] do
|
|
|
|
post :preview_markdown
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
# rubocop: enable Cop/PutGroupRoutesUnderScope
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
constraints(::Constraints::GroupUrlConstrainer.new) do
|
2018-03-17 18:26:18 +05:30
|
|
|
scope(path: 'groups/*id',
|
|
|
|
controller: :groups,
|
2018-11-08 19:23:39 +05:30
|
|
|
constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom|ics)/ }) do
|
2018-03-17 18:26:18 +05:30
|
|
|
scope(path: '-') do
|
|
|
|
get :edit, as: :edit_group
|
2018-11-08 19:23:39 +05:30
|
|
|
get :issues, as: :issues_group_calendar, action: :issues_calendar, constraints: lambda { |req| req.format == :ics }
|
2018-03-17 18:26:18 +05:30
|
|
|
get :issues, as: :issues_group
|
|
|
|
get :merge_requests, as: :merge_requests_group
|
|
|
|
get :projects, as: :projects_group
|
2019-07-07 11:18:12 +05:30
|
|
|
get :details, as: :details_group
|
2018-03-17 18:26:18 +05:30
|
|
|
get :activity, as: :activity_group
|
|
|
|
put :transfer, as: :transfer_group
|
2019-12-04 20:38:33 +05:30
|
|
|
# TODO: Remove as part of refactor in https://gitlab.com/gitlab-org/gitlab-foss/issues/49693
|
2018-11-20 20:47:30 +05:30
|
|
|
get 'shared', action: :show, as: :group_shared
|
|
|
|
get 'archived', action: :show, as: :group_archived
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
get '/', action: :show, as: :group_canonical
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
scope(path: 'groups/*group_id/-',
|
|
|
|
module: :groups,
|
|
|
|
as: :group,
|
|
|
|
constraints: { group_id: Gitlab::PathRegex.full_namespace_route_regex }) do
|
2017-09-10 17:25:29 +05:30
|
|
|
namespace :settings do
|
2019-12-21 20:55:43 +05:30
|
|
|
resource :ci_cd, only: [:show, :update], controller: 'ci_cd' do
|
2018-12-05 23:21:45 +05:30
|
|
|
put :reset_registration_token
|
2019-07-07 11:18:12 +05:30
|
|
|
patch :update_auto_devops
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
resource :variables, only: [:show, :update]
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
resources :children, only: [:index]
|
2018-11-08 19:23:39 +05:30
|
|
|
resources :shared_projects, only: [:index]
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
resources :labels, except: [:show] do
|
|
|
|
post :toggle_subscription, on: :member
|
|
|
|
end
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
resources :milestones, constraints: { id: %r{[^/]+} } do
|
2018-03-17 18:26:18 +05:30
|
|
|
member do
|
|
|
|
get :merge_requests
|
|
|
|
get :participants
|
|
|
|
get :labels
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :avatar, only: [:destroy]
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
concerns :clusterable
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do
|
|
|
|
post :resend_invite, on: :member
|
|
|
|
delete :leave, on: :collection
|
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
resources :group_links, only: [:index, :create, :update, :destroy], constraints: { id: /\d+/ }
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
resources :uploads, only: [:create] do
|
|
|
|
collection do
|
|
|
|
get ":secret/:filename", action: :show, as: :show, constraints: { filename: %r{[^/]+} }
|
2018-11-08 19:23:39 +05:30
|
|
|
post :authorize
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
resources :boards, only: [:index, :show], constraints: { id: /\d+/ }
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
resources :runners, only: [:index, :edit, :update, :destroy, :show] do
|
|
|
|
member do
|
|
|
|
post :resume
|
|
|
|
post :pause
|
|
|
|
end
|
|
|
|
end
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
resources :container_registries, only: [:index], controller: 'registry/repositories'
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
scope(path: '*id',
|
|
|
|
as: :group,
|
|
|
|
constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom)/ },
|
|
|
|
controller: :groups) do
|
|
|
|
get '/', action: :show
|
|
|
|
patch '/', action: :update
|
|
|
|
put '/', action: :update
|
|
|
|
delete '/', action: :destroy
|
|
|
|
end
|
|
|
|
end
|