2017-10-11 05:03:19 -04:00
|
|
|
resources :groups, only: [:index, :new, :create] do
|
|
|
|
post :preview_markdown
|
|
|
|
end
|
2016-09-19 15:49:08 -04:00
|
|
|
|
2018-03-08 07:56:54 -05:00
|
|
|
constraints(::Constraints::GroupUrlConstrainer.new) do
|
2017-10-20 09:39:01 -04:00
|
|
|
scope(path: 'groups/*id',
|
|
|
|
controller: :groups,
|
2018-05-31 10:01:04 -04:00
|
|
|
constraints: { id: Gitlab::PathRegex.full_namespace_route_regex, format: /(html|json|atom|ics)/ }) do
|
2017-10-27 05:29:51 -04:00
|
|
|
scope(path: '-') do
|
|
|
|
get :edit, as: :edit_group
|
2018-05-31 10:01:04 -04:00
|
|
|
get :issues, as: :issues_group_calendar, action: :issues_calendar, constraints: lambda { |req| req.format == :ics }
|
2017-10-27 05:29:51 -04:00
|
|
|
get :issues, as: :issues_group
|
|
|
|
get :merge_requests, as: :merge_requests_group
|
|
|
|
get :projects, as: :projects_group
|
|
|
|
get :activity, as: :activity_group
|
2018-02-05 19:10:58 -05:00
|
|
|
put :transfer, as: :transfer_group
|
2017-10-27 05:29:51 -04:00
|
|
|
end
|
|
|
|
|
2017-10-20 09:39:01 -04:00
|
|
|
get '/', action: :show, as: :group_canonical
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
2016-11-07 08:34:25 -05:00
|
|
|
|
2017-10-27 05:29:51 -04:00
|
|
|
scope(path: 'groups/*group_id/-',
|
2017-10-20 09:39:01 -04:00
|
|
|
module: :groups,
|
|
|
|
as: :group,
|
|
|
|
constraints: { group_id: Gitlab::PathRegex.full_namespace_route_regex }) do
|
2017-10-27 05:29:51 -04:00
|
|
|
namespace :settings do
|
|
|
|
resource :ci_cd, only: [:show], controller: 'ci_cd'
|
2018-04-08 06:20:05 -04:00
|
|
|
resources :badges, only: [:index]
|
2017-10-27 05:29:51 -04:00
|
|
|
end
|
2017-10-11 12:27:53 -04:00
|
|
|
|
2018-01-29 12:54:16 -05:00
|
|
|
resource :variables, only: [:show, :update]
|
2016-11-07 08:34:25 -05:00
|
|
|
|
2017-10-27 05:29:51 -04:00
|
|
|
resources :children, only: [:index]
|
2018-05-24 10:58:48 -04:00
|
|
|
resources :shared_projects, only: [:index]
|
2017-10-26 10:10:03 -04:00
|
|
|
|
2017-10-27 05:29:51 -04:00
|
|
|
resources :labels, except: [:show] do
|
|
|
|
post :toggle_subscription, on: :member
|
|
|
|
end
|
2017-10-26 11:49:07 -04:00
|
|
|
|
2018-01-27 00:35:53 -05:00
|
|
|
resources :milestones, constraints: { id: %r{[^/]+} }, only: [:index, :show, :edit, :update, :new, :create] do
|
2017-10-27 05:29:51 -04:00
|
|
|
member do
|
|
|
|
get :merge_requests
|
|
|
|
get :participants
|
|
|
|
get :labels
|
2017-10-26 11:49:07 -04:00
|
|
|
end
|
2017-10-27 05:29:51 -04:00
|
|
|
end
|
2017-10-26 11:49:07 -04:00
|
|
|
|
2017-10-27 05:29:51 -04:00
|
|
|
resource :avatar, only: [:destroy]
|
2017-10-26 11:49:07 -04:00
|
|
|
|
2017-10-27 05:29:51 -04:00
|
|
|
resources :group_members, only: [:index, :create, :update, :destroy], concerns: :access_requestable do
|
|
|
|
post :resend_invite, on: :member
|
|
|
|
delete :leave, on: :collection
|
2017-10-20 09:39:01 -04:00
|
|
|
end
|
2017-12-06 06:36:11 -05:00
|
|
|
|
|
|
|
resources :uploads, only: [:create] do
|
|
|
|
collection do
|
2018-01-27 00:35:53 -05:00
|
|
|
get ":secret/:filename", action: :show, as: :show, constraints: { filename: %r{[^/]+} }
|
2018-06-12 11:54:37 -04:00
|
|
|
post :authorize
|
2017-12-06 06:36:11 -05:00
|
|
|
end
|
|
|
|
end
|
2018-02-19 14:06:16 -05:00
|
|
|
|
|
|
|
# On CE only index and show actions are needed
|
|
|
|
resources :boards, only: [:index, :show]
|
2018-04-10 00:29:06 -04:00
|
|
|
|
|
|
|
resources :runners, only: [:index, :edit, :update, :destroy, :show] do
|
|
|
|
member do
|
|
|
|
post :resume
|
|
|
|
post :pause
|
|
|
|
end
|
|
|
|
end
|
2017-10-20 09:39:01 -04:00
|
|
|
end
|
2017-05-24 16:59:26 -04:00
|
|
|
|
|
|
|
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
|
2017-10-26 10:10:03 -04:00
|
|
|
|
|
|
|
# Legacy paths should be defined last, so they would be ignored if routes with
|
|
|
|
# one of the previously reserved words exist.
|
|
|
|
scope(path: 'groups/*group_id') do
|
2017-10-27 05:29:51 -04:00
|
|
|
Gitlab::Routing.redirect_legacy_paths(self, :labels, :milestones, :group_members,
|
|
|
|
:edit, :issues, :merge_requests, :projects,
|
|
|
|
:activity)
|
2017-10-26 10:10:03 -04:00
|
|
|
end
|
2017-05-24 16:59:26 -04:00
|
|
|
end
|