2016-11-14 09:55:31 -05:00
|
|
|
resources :projects, only: [:index, :new, :create]
|
|
|
|
|
|
|
|
draw :git_http
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2018-03-08 07:56:54 -05:00
|
|
|
constraints(::Constraints::ProjectUrlConstrainer.new) do
|
2017-05-19 20:46:40 -04:00
|
|
|
# If the route has a wildcard segment, the segment has a regex constraint,
|
|
|
|
# the segment is potentially followed by _another_ wildcard segment, and
|
|
|
|
# the `format` option is not set to false, we need to specify that
|
|
|
|
# regex constraint _outside_ of `constraints: {}`.
|
|
|
|
#
|
|
|
|
# Otherwise, Rails will overwrite the constraint with `/.+?/`,
|
|
|
|
# which breaks some of our wildcard routes like `/blob/*id`
|
|
|
|
# and `/tree/*id` that depend on the negative lookahead inside
|
2017-05-24 16:59:26 -04:00
|
|
|
# `Gitlab::PathRegex.full_namespace_route_regex`, which helps the router
|
2017-05-19 20:46:40 -04:00
|
|
|
# determine whether a certain path segment is part of `*namespace_id`,
|
|
|
|
# `:project_id`, or `*id`.
|
|
|
|
#
|
|
|
|
# See https://github.com/rails/rails/blob/v4.2.8/actionpack/lib/action_dispatch/routing/mapper.rb#L155
|
|
|
|
scope(path: '*namespace_id',
|
|
|
|
as: :namespace,
|
2017-05-24 16:59:26 -04:00
|
|
|
namespace_id: Gitlab::PathRegex.full_namespace_route_regex) do
|
2016-11-14 09:55:31 -05:00
|
|
|
scope(path: ':project_id',
|
2017-05-24 16:59:26 -04:00
|
|
|
constraints: { project_id: Gitlab::PathRegex.project_route_regex },
|
2016-11-14 09:55:31 -05:00
|
|
|
module: :projects,
|
|
|
|
as: :project) do
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2016-10-12 23:33:09 -04:00
|
|
|
resources :autocomplete_sources, only: [] do
|
|
|
|
collection do
|
|
|
|
get 'members'
|
|
|
|
get 'issues'
|
|
|
|
get 'merge_requests'
|
|
|
|
get 'labels'
|
|
|
|
get 'milestones'
|
|
|
|
get 'commands'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
#
|
|
|
|
# Templates
|
|
|
|
#
|
2018-01-27 00:35:53 -05:00
|
|
|
get '/templates/:template_type/:key' => 'templates#show', as: :template, constraints: { key: %r{[^/]+} }
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resource :avatar, only: [:show, :destroy]
|
|
|
|
resources :commit, only: [:show], constraints: { id: /\h{7,40}/ } do
|
|
|
|
member do
|
|
|
|
get :branches
|
|
|
|
get :pipelines
|
|
|
|
post :revert
|
|
|
|
post :cherry_pick
|
|
|
|
get :diff_for_path
|
2018-01-12 15:38:36 -05:00
|
|
|
get :merge_requests
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-03 03:07:03 -05:00
|
|
|
resource :pages, only: [:show, :update, :destroy] do
|
2018-02-25 08:06:09 -05:00
|
|
|
resources :domains, except: :index, controller: 'pages_domains', constraints: { id: %r{[^/]+} } do
|
2018-02-06 08:25:46 -05:00
|
|
|
member do
|
|
|
|
post :verify
|
|
|
|
end
|
|
|
|
end
|
2016-02-09 12:06:55 -05:00
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resources :snippets, concerns: :awardable, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
2017-04-30 13:15:20 -04:00
|
|
|
get :raw
|
2017-02-01 13:15:59 -05:00
|
|
|
post :mark_as_spam
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-23 22:18:14 -05:00
|
|
|
resources :services, constraints: { id: %r{[^/]+} }, only: [:edit, :update] do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
2017-05-22 06:07:12 -04:00
|
|
|
put :test
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-19 17:53:19 -05:00
|
|
|
resource :mattermost, only: [:new, :create]
|
2016-12-13 13:52:41 -05:00
|
|
|
|
2017-05-10 05:25:30 -04:00
|
|
|
namespace :prometheus do
|
2018-02-23 12:58:40 -05:00
|
|
|
resources :metrics, constraints: { id: %r{[^\/]+} }, only: [] do
|
|
|
|
get :active_common, on: :collection
|
|
|
|
end
|
2017-05-10 05:25:30 -04:00
|
|
|
end
|
|
|
|
|
2017-03-31 08:54:38 -04:00
|
|
|
resources :deploy_keys, constraints: { id: /\d+/ }, only: [:index, :new, :create, :edit, :update] do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
|
|
|
put :enable
|
|
|
|
put :disable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-05 18:07:36 -04:00
|
|
|
resources :deploy_tokens, constraints: { id: /\d+/ }, only: [] do
|
2018-03-19 12:11:12 -04:00
|
|
|
member do
|
|
|
|
put :revoke
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resources :forks, only: [:index, :new, :create]
|
|
|
|
resource :import, only: [:new, :create, :show]
|
|
|
|
|
2017-06-13 18:12:31 -04:00
|
|
|
resources :merge_requests, concerns: :awardable, except: [:new, :create], constraints: { id: /\d+/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
2017-05-09 00:15:34 -04:00
|
|
|
get :commit_change_content
|
2016-10-05 08:21:27 -04:00
|
|
|
post :merge
|
2017-02-17 08:56:13 -05:00
|
|
|
post :cancel_merge_when_pipeline_succeeds
|
2017-03-17 02:58:12 -04:00
|
|
|
get :pipeline_status
|
2016-10-07 18:10:06 -04:00
|
|
|
get :ci_environments_status
|
2016-10-05 08:21:27 -04:00
|
|
|
post :toggle_subscription
|
|
|
|
post :remove_wip
|
2016-08-08 18:30:01 -04:00
|
|
|
post :assign_related_issues
|
2018-02-27 19:10:43 -05:00
|
|
|
get :discussions, format: :json
|
2017-12-20 04:01:21 -05:00
|
|
|
post :rebase
|
2018-08-02 02:05:07 -04:00
|
|
|
get :test_reports
|
2017-06-13 18:12:31 -04:00
|
|
|
|
|
|
|
scope constraints: { format: nil }, action: :show do
|
|
|
|
get :commits, defaults: { tab: 'commits' }
|
|
|
|
get :pipelines, defaults: { tab: 'pipelines' }
|
|
|
|
get :diffs, defaults: { tab: 'diffs' }
|
|
|
|
end
|
|
|
|
|
|
|
|
scope constraints: { format: 'json' }, as: :json do
|
|
|
|
get :commits
|
|
|
|
get :pipelines
|
|
|
|
get :diffs, to: 'merge_requests/diffs#show'
|
|
|
|
end
|
|
|
|
|
|
|
|
get :diff_for_path, controller: 'merge_requests/diffs'
|
|
|
|
|
|
|
|
scope controller: 'merge_requests/conflicts' do
|
|
|
|
get :conflicts, action: :show
|
|
|
|
get :conflict_for_path
|
|
|
|
post :resolve_conflicts
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
get :diff_for_path
|
|
|
|
post :bulk_update
|
|
|
|
end
|
|
|
|
|
2018-03-13 08:01:36 -04:00
|
|
|
resources :discussions, only: [:show], constraints: { id: /\h{40}/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
|
|
|
post :resolve
|
|
|
|
delete :resolve, action: :unresolve
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-11 16:46:02 -04:00
|
|
|
scope path: 'merge_requests', controller: 'merge_requests/creations' do
|
2017-06-13 18:12:31 -04:00
|
|
|
post '', action: :create, as: nil
|
|
|
|
|
|
|
|
scope path: 'new', as: :new_merge_request do
|
|
|
|
get '', action: :new
|
|
|
|
|
|
|
|
scope constraints: { format: nil }, action: :new do
|
|
|
|
get :diffs, defaults: { tab: 'diffs' }
|
|
|
|
get :pipelines, defaults: { tab: 'pipelines' }
|
|
|
|
end
|
|
|
|
|
|
|
|
scope constraints: { format: 'json' }, as: :json do
|
|
|
|
get :diffs
|
|
|
|
get :pipelines
|
|
|
|
end
|
|
|
|
|
|
|
|
get :diff_for_path
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-29 12:39:06 -05:00
|
|
|
resource :variables, only: [:show, :update]
|
2018-01-12 16:39:42 -05:00
|
|
|
|
2017-03-07 08:02:56 -05:00
|
|
|
resources :triggers, only: [:index, :create, :edit, :update, :destroy] do
|
|
|
|
member do
|
|
|
|
post :take_ownership
|
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2018-05-03 10:19:21 -04:00
|
|
|
resource :mirror, only: [:show, :update] do
|
|
|
|
member do
|
|
|
|
post :update_now
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-05 08:21:27 -04:00
|
|
|
resources :pipelines, only: [:index, :new, :create, :show] do
|
|
|
|
collection do
|
|
|
|
resource :pipelines_settings, path: 'settings', only: [:show, :update]
|
2017-03-02 12:57:01 -05:00
|
|
|
get :charts
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
2016-12-19 07:20:17 -05:00
|
|
|
get :stage
|
2018-05-01 17:56:33 -04:00
|
|
|
get :stage_ajax
|
2016-10-05 08:21:27 -04:00
|
|
|
post :cancel
|
|
|
|
post :retry
|
2016-11-23 09:44:05 -05:00
|
|
|
get :builds
|
2017-04-15 21:33:01 -04:00
|
|
|
get :failures
|
2017-03-03 01:59:25 -05:00
|
|
|
get :status
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-07 18:35:56 -04:00
|
|
|
resources :pipeline_schedules, except: [:show] do
|
|
|
|
member do
|
2017-12-06 01:24:20 -05:00
|
|
|
post :play
|
2017-05-07 18:35:56 -04:00
|
|
|
post :take_ownership
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-05 07:00:02 -05:00
|
|
|
resources :clusters, except: [:edit, :create] do
|
2017-09-25 03:10:25 -04:00
|
|
|
collection do
|
2018-06-12 01:57:04 -04:00
|
|
|
post :create_gcp
|
|
|
|
post :create_user
|
2017-09-25 03:10:25 -04:00
|
|
|
end
|
2017-09-28 05:11:17 -04:00
|
|
|
|
|
|
|
member do
|
2017-09-30 11:54:22 -04:00
|
|
|
get :status, format: :json
|
2017-11-02 10:10:46 -04:00
|
|
|
|
2017-11-02 10:31:25 -04:00
|
|
|
scope :applications do
|
2017-11-07 07:59:02 -05:00
|
|
|
post '/:application', to: 'clusters/applications#create', as: :install_applications
|
2017-11-02 10:10:46 -04:00
|
|
|
end
|
2017-09-28 05:11:17 -04:00
|
|
|
end
|
2017-09-25 03:10:25 -04:00
|
|
|
end
|
|
|
|
|
2016-10-17 09:40:18 -04:00
|
|
|
resources :environments, except: [:destroy] do
|
2016-10-17 05:33:24 -04:00
|
|
|
member do
|
|
|
|
post :stop
|
2016-12-14 19:59:04 -05:00
|
|
|
get :terminal
|
2017-03-07 11:57:42 -05:00
|
|
|
get :metrics
|
2017-05-10 05:25:30 -04:00
|
|
|
get :additional_metrics
|
2016-12-14 19:59:04 -05:00
|
|
|
get '/terminal.ws/authorize', to: 'environments#terminal_websocket_authorize', constraints: { format: nil }
|
2016-10-17 05:33:24 -04:00
|
|
|
end
|
2017-02-07 09:06:31 -05:00
|
|
|
|
|
|
|
collection do
|
2018-06-28 05:54:02 -04:00
|
|
|
get :metrics, action: :metrics_redirect
|
2017-03-27 05:15:29 -04:00
|
|
|
get :folder, path: 'folders/*id', constraints: { format: /(html|json)/ }
|
2017-02-07 09:06:31 -05:00
|
|
|
end
|
2017-03-27 05:22:43 -04:00
|
|
|
|
2017-05-09 00:15:34 -04:00
|
|
|
resources :deployments, only: [:index] do
|
|
|
|
member do
|
|
|
|
get :metrics
|
2017-05-25 11:39:43 -04:00
|
|
|
get :additional_metrics
|
2017-05-09 00:15:34 -04:00
|
|
|
end
|
|
|
|
end
|
2016-10-17 05:33:24 -04:00
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resource :cycle_analytics, only: [:show]
|
|
|
|
|
2016-10-24 10:24:56 -04:00
|
|
|
namespace :cycle_analytics do
|
2016-11-16 03:58:23 -05:00
|
|
|
scope :events, controller: 'events' do
|
2016-10-24 10:49:25 -04:00
|
|
|
get :issue
|
|
|
|
get :plan
|
|
|
|
get :code
|
|
|
|
get :test
|
|
|
|
get :review
|
|
|
|
get :staging
|
|
|
|
get :production
|
2016-10-24 10:24:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
scope '-' do
|
2018-02-19 15:41:04 -05:00
|
|
|
get 'archive/*id', constraints: { format: Gitlab::PathRegex.archive_formats_regex, id: /.+?/ }, to: 'repositories#archive', as: 'archive'
|
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
resources :jobs, only: [:index, :show], constraints: { id: /\d+/ } do
|
|
|
|
collection do
|
|
|
|
post :cancel_all
|
|
|
|
|
|
|
|
resources :artifacts, only: [] do
|
|
|
|
collection do
|
|
|
|
get :latest_succeeded,
|
|
|
|
path: '*ref_name_and_path',
|
|
|
|
format: false
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
member do
|
|
|
|
get :status
|
|
|
|
post :cancel
|
|
|
|
post :retry
|
|
|
|
post :play
|
|
|
|
post :erase
|
|
|
|
get :trace, defaults: { format: 'json' }
|
|
|
|
get :raw
|
2018-07-05 09:55:10 -04:00
|
|
|
get :terminal
|
|
|
|
get '/terminal.ws/authorize', to: 'jobs#terminal_websocket_authorize', constraints: { format: nil }
|
2017-05-31 04:56:00 -04:00
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2017-05-31 04:56:00 -04:00
|
|
|
resource :artifacts, only: [] do
|
|
|
|
get :download
|
|
|
|
get :browse, path: 'browse(/*path)', format: false
|
|
|
|
get :file, path: 'file/*path', format: false
|
|
|
|
get :raw, path: 'raw/*path', format: false
|
|
|
|
post :keep
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
2018-03-26 10:54:29 -04:00
|
|
|
|
|
|
|
namespace :ci do
|
|
|
|
resource :lint, only: [:show, :create]
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
2017-07-06 10:55:48 -04:00
|
|
|
draw :legacy_builds
|
2017-05-18 07:32:22 -04:00
|
|
|
|
2017-04-20 04:31:37 -04:00
|
|
|
resources :hooks, only: [:index, :create, :edit, :update, :destroy], constraints: { id: /\d+/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
2018-06-21 04:38:59 -04:00
|
|
|
post :test
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
2017-04-27 06:08:57 -04:00
|
|
|
|
|
|
|
resources :hook_logs, only: [:show] do
|
|
|
|
member do
|
2018-08-24 12:52:23 -04:00
|
|
|
post :retry
|
2017-04-27 06:08:57 -04:00
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
2017-04-05 08:13:46 -04:00
|
|
|
resources :container_registry, only: [:index, :destroy],
|
2017-04-05 09:19:48 -04:00
|
|
|
controller: 'registry/repositories'
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2017-03-31 07:56:07 -04:00
|
|
|
namespace :registry do
|
|
|
|
resources :repository, only: [] do
|
2017-10-18 19:35:37 -04:00
|
|
|
# We default to JSON format in the controller to avoid ambiguity.
|
|
|
|
# `latest.json` could either be a request for a tag named `latest`
|
|
|
|
# in JSON format, or a request for tag named `latest.json`.
|
|
|
|
scope format: false do
|
|
|
|
resources :tags, only: [:index, :destroy],
|
|
|
|
constraints: { id: Gitlab::Regex.container_registry_tag_regex }
|
|
|
|
end
|
2017-03-31 07:56:07 -04:00
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resources :milestones, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
2017-10-31 11:03:52 -04:00
|
|
|
post :promote
|
2016-10-05 08:21:27 -04:00
|
|
|
put :sort_issues
|
|
|
|
put :sort_merge_requests
|
2017-04-25 10:25:20 -04:00
|
|
|
get :merge_requests
|
|
|
|
get :participants
|
|
|
|
get :labels
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :labels, except: [:show], constraints: { id: /\d+/ } do
|
|
|
|
collection do
|
|
|
|
post :generate
|
|
|
|
post :set_priorities
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
2016-11-02 07:58:59 -04:00
|
|
|
post :promote
|
2016-10-05 08:21:27 -04:00
|
|
|
post :toggle_subscription
|
|
|
|
delete :remove_priority
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-31 10:01:04 -04:00
|
|
|
get :issues, to: 'issues#calendar', constraints: lambda { |req| req.format == :ics }
|
2016-10-05 08:21:27 -04:00
|
|
|
resources :issues, concerns: :awardable, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
post :toggle_subscription
|
|
|
|
post :mark_as_spam
|
2017-08-14 03:26:19 -04:00
|
|
|
post :move
|
2016-10-05 08:21:27 -04:00
|
|
|
get :referenced_merge_requests
|
|
|
|
get :related_branches
|
|
|
|
get :can_create_branch
|
2017-05-13 16:19:49 -04:00
|
|
|
get :realtime_changes
|
2017-05-04 04:09:21 -04:00
|
|
|
post :create_merge_request
|
2017-06-09 17:24:54 -04:00
|
|
|
get :discussions, format: :json
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
collection do
|
2018-09-20 12:47:34 -04:00
|
|
|
post :bulk_update
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-27 00:35:53 -05:00
|
|
|
resources :project_members, except: [:show, :new, :edit], constraints: { id: %r{[a-zA-Z./0-9_\-#%+]+} }, concerns: :access_requestable do
|
2016-10-05 08:21:27 -04:00
|
|
|
collection do
|
|
|
|
delete :leave
|
|
|
|
|
|
|
|
# Used for import team
|
|
|
|
# from another project
|
|
|
|
get :import
|
|
|
|
post :apply_import
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
|
|
|
post :resend_invite
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-06 10:30:34 -04:00
|
|
|
resources :group_links, only: [:index, :create, :update, :destroy], constraints: { id: /\d+/ }
|
2016-10-05 08:21:27 -04:00
|
|
|
|
2017-02-07 12:02:02 -05:00
|
|
|
resources :notes, only: [:create, :destroy, :update], concerns: :awardable, constraints: { id: /\d+/ } do
|
2016-10-05 08:21:27 -04:00
|
|
|
member do
|
|
|
|
delete :delete_attachment
|
|
|
|
post :resolve
|
|
|
|
delete :resolve, action: :unresolve
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-07 12:02:02 -05:00
|
|
|
get 'noteable/:target_type/:target_id/notes' => 'notes#index', as: 'noteable_notes'
|
|
|
|
|
2018-03-06 09:15:19 -05:00
|
|
|
# On CE only index and show are needed
|
2018-03-05 09:39:24 -05:00
|
|
|
resources :boards, only: [:index, :show]
|
2016-10-05 08:21:27 -04:00
|
|
|
|
|
|
|
resources :todos, only: [:create]
|
|
|
|
|
|
|
|
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
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :runners, only: [:index, :edit, :update, :destroy, :show] do
|
|
|
|
member do
|
2017-12-19 16:24:36 -05:00
|
|
|
post :resume
|
|
|
|
post :pause
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
post :toggle_shared_runners
|
2017-10-05 03:55:01 -04:00
|
|
|
post :toggle_group_runners
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :runner_projects, only: [:create, :destroy]
|
|
|
|
resources :badges, only: [:index] do
|
|
|
|
collection do
|
2017-05-24 16:59:26 -04:00
|
|
|
scope '*ref', constraints: { ref: Gitlab::PathRegex.git_reference_regex } do
|
2016-10-05 08:21:27 -04:00
|
|
|
constraints format: /svg/ do
|
2017-07-19 07:08:47 -04:00
|
|
|
# Keep around until 10.0, see gitlab-org/gitlab-ce#35307
|
|
|
|
get :build, to: "badges#pipeline"
|
|
|
|
get :pipeline
|
2016-10-05 08:21:27 -04:00
|
|
|
get :coverage
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-12-22 17:38:27 -05:00
|
|
|
namespace :settings do
|
2017-10-25 14:15:35 -04:00
|
|
|
get :members, to: redirect("%{namespace_id}/%{project_id}/project_members")
|
2018-03-22 10:31:41 -04:00
|
|
|
resource :ci_cd, only: [:show, :update], controller: 'ci_cd' do
|
2018-01-05 13:22:07 -05:00
|
|
|
post :reset_cache
|
2018-01-04 13:13:30 -05:00
|
|
|
end
|
2016-12-30 12:30:25 -05:00
|
|
|
resource :integrations, only: [:show]
|
2018-04-05 18:07:36 -04:00
|
|
|
resource :repository, only: [:show], controller: :repository do
|
|
|
|
post :create_deploy_token, path: 'deploy_token/create'
|
|
|
|
end
|
2016-12-22 17:38:27 -05:00
|
|
|
end
|
|
|
|
|
2016-11-07 10:14:34 -05:00
|
|
|
# Since both wiki and repository routing contains wildcard characters
|
|
|
|
# its preferable to keep it below all other project routes
|
|
|
|
draw :wiki
|
|
|
|
draw :repository
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
2016-11-14 09:55:31 -05:00
|
|
|
|
|
|
|
resources(:projects,
|
|
|
|
path: '/',
|
2017-05-24 16:59:26 -04:00
|
|
|
constraints: { id: Gitlab::PathRegex.project_route_regex },
|
2016-11-14 09:55:31 -05:00
|
|
|
only: [:edit, :show, :update, :destroy]) do
|
|
|
|
member do
|
|
|
|
put :transfer
|
|
|
|
delete :remove_fork
|
|
|
|
post :archive
|
|
|
|
post :unarchive
|
|
|
|
post :housekeeping
|
|
|
|
post :toggle_star
|
|
|
|
post :preview_markdown
|
|
|
|
post :export
|
|
|
|
post :remove_export
|
|
|
|
post :generate_new_export
|
|
|
|
get :download_export
|
|
|
|
get :activity
|
|
|
|
get :refs
|
2017-08-24 02:20:36 -04:00
|
|
|
put :new_issuable_address
|
2016-11-14 09:55:31 -05:00
|
|
|
end
|
|
|
|
end
|
2016-10-05 08:21:27 -04:00
|
|
|
end
|
|
|
|
end
|