2013-01-09 00:14:05 -05:00
|
|
|
require 'sidekiq/web'
|
2013-05-14 08:33:31 -04:00
|
|
|
require 'api/api'
|
2013-01-09 00:14:05 -05:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
Gitlab::Application.routes.draw do
|
2014-12-19 09:15:29 -05:00
|
|
|
use_doorkeeper do
|
2015-02-02 22:30:09 -05:00
|
|
|
controllers applications: 'oauth/applications',
|
|
|
|
authorized_applications: 'oauth/authorized_applications',
|
|
|
|
authorizations: 'oauth/authorizations'
|
2014-12-19 09:15:29 -05:00
|
|
|
end
|
2015-03-08 17:46:22 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
# Search
|
2015-01-19 15:37:20 -05:00
|
|
|
get 'search' => 'search#show'
|
|
|
|
get 'search/autocomplete' => 'search#autocomplete', as: :search_autocomplete
|
2012-02-19 09:35:31 -05:00
|
|
|
|
2012-06-27 05:26:16 -04:00
|
|
|
# API
|
2013-05-14 08:33:31 -04:00
|
|
|
API::API.logger Rails.logger
|
|
|
|
mount API::API => '/api'
|
2012-06-27 05:26:16 -04:00
|
|
|
|
2014-02-11 08:34:47 -05:00
|
|
|
# Get all keys of user
|
2013-10-02 11:09:29 -04:00
|
|
|
get ':username.keys' => 'profiles/keys#get_keys' , constraints: { username: /.*/ }
|
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
constraint = lambda { |request| request.env['warden'].authenticate? and request.env['warden'].user.admin? }
|
2013-01-09 00:14:05 -05:00
|
|
|
constraints constraint do
|
2015-01-19 15:37:20 -05:00
|
|
|
mount Sidekiq::Web, at: '/admin/sidekiq', as: :sidekiq
|
2013-01-09 00:14:05 -05:00
|
|
|
end
|
2011-12-07 18:31:06 -05:00
|
|
|
|
2012-06-28 23:30:31 -04:00
|
|
|
# Enable Grack support
|
|
|
|
mount Grack::Bundle.new({
|
2012-12-14 19:16:25 -05:00
|
|
|
git_path: Gitlab.config.git.bin_path,
|
2013-02-11 12:16:59 -05:00
|
|
|
project_root: Gitlab.config.gitlab_shell.repos_path,
|
|
|
|
upload_pack: Gitlab.config.gitlab_shell.upload_pack,
|
|
|
|
receive_pack: Gitlab.config.gitlab_shell.receive_pack
|
2013-12-05 09:26:34 -05:00
|
|
|
}), at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }, via: [:get, :post]
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
# Help
|
2014-04-18 11:21:21 -04:00
|
|
|
get 'help' => 'help#index'
|
2014-05-28 09:47:03 -04:00
|
|
|
get 'help/:category/:file' => 'help#show', as: :help_page
|
2014-05-29 06:01:34 -04:00
|
|
|
get 'help/shortcuts'
|
2015-03-08 17:46:22 -04:00
|
|
|
get 'help/ui' => 'help#ui'
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2013-03-24 18:17:20 -04:00
|
|
|
#
|
|
|
|
# Global snippets
|
|
|
|
#
|
|
|
|
resources :snippets do
|
|
|
|
member do
|
2015-01-19 15:37:20 -05:00
|
|
|
get 'raw'
|
2013-03-24 18:17:20 -04:00
|
|
|
end
|
|
|
|
end
|
2015-01-19 15:37:20 -05:00
|
|
|
get '/s/:username' => 'snippets#user_index', as: :user_snippets, constraints: { username: /.*/ }
|
2013-03-24 18:17:20 -04:00
|
|
|
|
2015-02-11 20:34:41 -05:00
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
#
|
2015-02-02 20:01:07 -05:00
|
|
|
# Import
|
2014-12-31 08:07:48 -05:00
|
|
|
#
|
2015-02-02 20:01:07 -05:00
|
|
|
namespace :import do
|
|
|
|
resource :github, only: [:create, :new], controller: :github do
|
2015-01-27 18:37:19 -05:00
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
|
|
|
|
2015-02-02 20:01:07 -05:00
|
|
|
resource :gitlab, only: [:create, :new], controller: :gitlab do
|
2015-01-27 18:37:19 -05:00
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
2015-02-20 12:38:41 -05:00
|
|
|
|
2015-02-17 10:59:50 -05:00
|
|
|
resource :bitbucket, only: [:create, :new], controller: :bitbucket do
|
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
2015-03-08 17:46:22 -04:00
|
|
|
|
2015-02-20 12:38:41 -05:00
|
|
|
resource :gitorious, only: [:create, :new], controller: :gitorious do
|
|
|
|
get :status
|
|
|
|
get :callback
|
|
|
|
get :jobs
|
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
2015-02-11 20:34:41 -05:00
|
|
|
|
2015-02-20 07:13:48 -05:00
|
|
|
#
|
|
|
|
# Uploads
|
|
|
|
#
|
2015-02-11 20:34:41 -05:00
|
|
|
|
2015-02-20 07:13:48 -05:00
|
|
|
scope path: :uploads do
|
|
|
|
# Note attachments and User/Group/Project avatars
|
2015-02-23 18:18:45 -05:00
|
|
|
get ":model/:mounted_as/:id/:filename",
|
|
|
|
to: "uploads#show",
|
2015-02-20 08:39:35 -05:00
|
|
|
constraints: { model: /note|user|group|project/, mounted_as: /avatar|attachment/, filename: /.+/ }
|
2015-02-20 07:13:48 -05:00
|
|
|
|
|
|
|
# Project markdown uploads
|
2015-02-24 08:54:32 -05:00
|
|
|
get ":namespace_id/:project_id/:secret/:filename",
|
2015-02-23 19:29:32 -05:00
|
|
|
to: "projects/uploads#show",
|
2015-02-24 08:54:32 -05:00
|
|
|
constraints: { namespace_id: /[a-zA-Z.0-9_\-]+/, project_id: /[a-zA-Z.0-9_\-]+/, filename: /.+/ }
|
2015-02-20 07:13:48 -05:00
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
|
2015-02-27 05:26:47 -05:00
|
|
|
# Redirect old note attachments path to new uploads path.
|
2015-02-27 05:26:47 -05:00
|
|
|
get "files/note/:id/:filename",
|
|
|
|
to: redirect("uploads/note/attachment/%{id}/%{filename}"),
|
|
|
|
constraints: { filename: /.+/ }
|
|
|
|
|
2013-01-10 13:17:57 -05:00
|
|
|
#
|
2015-01-24 14:25:16 -05:00
|
|
|
# Explore area
|
2013-01-10 13:17:57 -05:00
|
|
|
#
|
2014-07-23 05:03:49 -04:00
|
|
|
namespace :explore do
|
|
|
|
resources :projects, only: [:index] do
|
|
|
|
collection do
|
|
|
|
get :trending
|
2014-07-25 15:05:23 -04:00
|
|
|
get :starred
|
2014-07-23 05:03:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-11 12:29:51 -04:00
|
|
|
resources :groups, only: [:index]
|
2015-01-19 15:37:20 -05:00
|
|
|
root to: 'projects#trending'
|
2013-01-10 13:17:57 -05:00
|
|
|
end
|
|
|
|
|
2014-07-23 05:03:49 -04:00
|
|
|
# Compatibility with old routing
|
2015-01-19 15:37:20 -05:00
|
|
|
get 'public' => 'explore/projects#index'
|
|
|
|
get 'public/projects' => 'explore/projects#index'
|
2014-07-23 05:03:49 -04:00
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Admin Area
|
|
|
|
#
|
2011-10-26 09:46:25 -04:00
|
|
|
namespace :admin do
|
2013-01-26 05:08:34 -05:00
|
|
|
resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do
|
2014-12-30 04:15:11 -05:00
|
|
|
resources :keys, only: [:show, :destroy]
|
2012-06-28 23:30:31 -04:00
|
|
|
member do
|
2012-02-11 12:56:18 -05:00
|
|
|
put :team_update
|
2012-04-16 16:33:03 -04:00
|
|
|
put :block
|
|
|
|
put :unblock
|
2014-06-23 03:45:26 -04:00
|
|
|
delete 'remove/:email_id', action: 'remove_email', as: 'remove_email'
|
2012-02-11 12:56:18 -05:00
|
|
|
end
|
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2015-01-17 18:37:27 -05:00
|
|
|
resources :applications
|
|
|
|
|
2012-10-02 12:01:40 -04:00
|
|
|
resources :groups, constraints: { id: /[^\/]+/ } do
|
|
|
|
member do
|
2015-03-13 11:22:03 -04:00
|
|
|
put :members_update
|
2013-01-20 06:25:16 -05:00
|
|
|
end
|
2013-01-19 12:11:11 -05:00
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :hooks, only: [:index, :create, :destroy] do
|
2012-07-12 15:10:34 -04:00
|
|
|
get :test
|
|
|
|
end
|
2013-01-22 16:03:52 -05:00
|
|
|
|
2013-11-12 08:20:31 -05:00
|
|
|
resources :broadcast_messages, only: [:index, :create, :destroy]
|
2012-09-16 04:51:26 -04:00
|
|
|
resource :logs, only: [:show]
|
2013-05-30 02:46:28 -04:00
|
|
|
resource :background_jobs, controller: 'background_jobs', only: [:show]
|
2013-11-15 08:25:37 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :namespaces, path: '/projects', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do
|
|
|
|
root to: 'projects#index', as: :projects
|
|
|
|
|
2015-02-23 18:18:45 -05:00
|
|
|
resources(:projects,
|
|
|
|
path: '/',
|
2015-01-24 13:02:58 -05:00
|
|
|
constraints: { id: /[a-zA-Z.0-9_\-]+/ },
|
|
|
|
only: [:index, :show]) do
|
|
|
|
root to: 'projects#show'
|
|
|
|
|
|
|
|
member do
|
|
|
|
put :transfer
|
|
|
|
end
|
2013-11-15 08:25:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-11 20:34:41 -05:00
|
|
|
resource :application_settings, only: [:show, :update] do
|
|
|
|
resources :services
|
|
|
|
end
|
2015-01-08 03:22:50 -05:00
|
|
|
|
2015-01-19 15:37:20 -05:00
|
|
|
root to: 'dashboard#index'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
#
|
|
|
|
# Profile Area
|
|
|
|
#
|
2012-12-02 06:29:24 -05:00
|
|
|
resource :profile, only: [:show, :update] do
|
|
|
|
member do
|
|
|
|
get :history
|
|
|
|
get :design
|
2014-12-25 11:35:04 -05:00
|
|
|
get :applications
|
2012-12-02 06:29:24 -05:00
|
|
|
|
|
|
|
put :reset_private_token
|
|
|
|
put :update_username
|
|
|
|
end
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2013-06-24 11:24:14 -04:00
|
|
|
scope module: :profiles do
|
2013-10-09 09:37:18 -04:00
|
|
|
resource :account, only: [:show, :update]
|
2013-06-24 11:24:14 -04:00
|
|
|
resource :notifications, only: [:show, :update]
|
2013-10-09 09:37:18 -04:00
|
|
|
resource :password, only: [:new, :create, :edit, :update] do
|
|
|
|
member do
|
|
|
|
put :reset
|
|
|
|
end
|
|
|
|
end
|
2013-06-24 11:24:14 -04:00
|
|
|
resources :keys
|
2014-02-08 22:08:49 -05:00
|
|
|
resources :emails, only: [:index, :create, :destroy]
|
2013-12-02 13:03:07 -05:00
|
|
|
resource :avatar, only: [:destroy]
|
2013-06-24 11:24:14 -04:00
|
|
|
end
|
2012-12-02 06:29:24 -05:00
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
get 'u/:username/calendar' => 'users#calendar', as: :user_calendar,
|
|
|
|
constraints: { username: /(?:[^.]|\.(?!atom$))+/, format: /atom/ }
|
|
|
|
|
2014-10-07 12:54:38 -04:00
|
|
|
get '/u/:username' => 'users#show', as: :user,
|
|
|
|
constraints: { username: /(?:[^.]|\.(?!atom$))+/, format: /atom/ }
|
2013-01-22 12:05:01 -05:00
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
#
|
|
|
|
# Dashboard Area
|
|
|
|
#
|
2015-01-19 15:37:20 -05:00
|
|
|
resource :dashboard, controller: 'dashboard', only: [:show] do
|
2013-01-27 05:56:20 -05:00
|
|
|
member do
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
|
|
|
end
|
2015-03-03 10:19:37 -05:00
|
|
|
|
|
|
|
scope module: :dashboard do
|
|
|
|
resources :milestones, only: [:index, :show]
|
2015-03-08 20:03:30 -04:00
|
|
|
|
2015-03-13 11:28:33 -04:00
|
|
|
resources :groups, only: [:index]
|
2015-03-09 17:12:03 -04:00
|
|
|
|
|
|
|
resources :projects, only: [] do
|
|
|
|
collection do
|
|
|
|
get :starred
|
|
|
|
end
|
|
|
|
end
|
2015-03-03 10:19:37 -05:00
|
|
|
end
|
2013-01-27 05:56:20 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-10-02 13:42:15 -04:00
|
|
|
#
|
|
|
|
# Groups Area
|
|
|
|
#
|
2015-02-02 23:36:54 -05:00
|
|
|
resources :groups, constraints: { id: /(?:[^.]|\.(?!atom$))+/, format: /atom/ } do
|
2012-10-02 13:42:15 -04:00
|
|
|
member do
|
|
|
|
get :issues
|
|
|
|
get :merge_requests
|
2014-05-29 14:30:20 -04:00
|
|
|
get :projects
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
2013-06-17 09:51:43 -04:00
|
|
|
|
2014-01-27 16:34:05 -05:00
|
|
|
scope module: :groups do
|
2015-03-13 11:27:51 -04:00
|
|
|
resources :group_members, only: [:index, :create, :update, :destroy] do
|
2015-03-13 11:28:33 -04:00
|
|
|
delete :leave, on: :collection
|
2015-03-13 11:27:51 -04:00
|
|
|
end
|
|
|
|
|
2014-01-27 16:34:05 -05:00
|
|
|
resource :avatar, only: [:destroy]
|
2015-03-03 10:19:37 -05:00
|
|
|
resources :milestones, only: [:index, :show, :update]
|
2014-01-27 16:34:05 -05:00
|
|
|
end
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|
|
|
|
|
2012-09-16 07:22:46 -04:00
|
|
|
resources :projects, constraints: { id: /[^\/]+/ }, only: [:new, :create]
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2014-10-02 08:38:26 -04:00
|
|
|
devise_for :users, controllers: { omniauth_callbacks: :omniauth_callbacks, registrations: :registrations , passwords: :passwords, sessions: :sessions, confirmations: :confirmations }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2014-06-24 08:16:52 -04:00
|
|
|
devise_scope :user do
|
2015-01-19 15:37:20 -05:00
|
|
|
get '/users/auth/:provider/omniauth_error' => 'omniauth_callbacks#omniauth_error', as: :omniauth_error
|
2014-06-24 08:16:52 -04:00
|
|
|
end
|
2015-01-24 13:02:58 -05:00
|
|
|
|
|
|
|
root to: "dashboard#show"
|
|
|
|
|
2012-06-13 02:03:53 -04:00
|
|
|
#
|
|
|
|
# Project Area
|
|
|
|
#
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :namespaces, path: '/', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do
|
|
|
|
resources(:projects, constraints: { id: /[a-zA-Z.0-9_\-]+/ }, except:
|
|
|
|
[:new, :create, :index], path: "/") do
|
|
|
|
member do
|
|
|
|
put :transfer
|
|
|
|
post :archive
|
|
|
|
post :unarchive
|
|
|
|
post :toggle_star
|
|
|
|
post :markdown_preview
|
|
|
|
get :autocomplete_sources
|
2014-08-02 11:12:01 -04:00
|
|
|
end
|
2015-01-26 18:02:59 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope module: :projects do
|
|
|
|
# Blob routes:
|
|
|
|
get '/new/*id', to: 'blob#new', constraints: { id: /.+/ }, as: 'new_blob'
|
|
|
|
post '/create/*id', to: 'blob#create', constraints: { id: /.+/ }, as: 'create_blob'
|
|
|
|
get '/edit/*id', to: 'blob#edit', constraints: { id: /.+/ }, as: 'edit_blob'
|
|
|
|
put '/update/*id', to: 'blob#update', constraints: { id: /.+/ }, as: 'update_blob'
|
|
|
|
post '/preview/*id', to: 'blob#preview', constraints: { id: /.+/ }, as: 'preview_blob'
|
|
|
|
|
|
|
|
scope do
|
2015-02-23 15:38:30 -05:00
|
|
|
get(
|
|
|
|
'/blob/*id/diff',
|
|
|
|
to: 'blob#diff',
|
|
|
|
constraints: { id: /.+/, format: false },
|
|
|
|
as: :blob_diff
|
|
|
|
)
|
|
|
|
get(
|
|
|
|
'/blob/*id',
|
|
|
|
to: 'blob#show',
|
|
|
|
constraints: { id: /.+/, format: false },
|
|
|
|
as: :blob
|
|
|
|
)
|
|
|
|
delete(
|
|
|
|
'/blob/*id',
|
|
|
|
to: 'blob#destroy',
|
|
|
|
constraints: { id: /.+/, format: false }
|
|
|
|
)
|
2015-01-24 13:02:58 -05:00
|
|
|
end
|
2015-02-03 00:30:11 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/raw/*id',
|
|
|
|
to: 'raw#show',
|
|
|
|
constraints: { id: /.+/, format: /(html|js)/ },
|
|
|
|
as: :raw
|
|
|
|
)
|
2014-09-26 13:32:44 -04:00
|
|
|
end
|
2013-11-05 03:28:49 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/tree/*id',
|
|
|
|
to: 'tree#show',
|
|
|
|
constraints: { id: /.+/, format: /(html|js)/ },
|
|
|
|
as: :tree
|
|
|
|
)
|
|
|
|
end
|
|
|
|
resource :avatar, only: [:show, :destroy]
|
2013-06-23 12:47:22 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :commit, only: [:show], constraints: { id: /[[:alnum:]]{6,40}/ } do
|
|
|
|
get :branches, on: :member
|
2013-03-24 14:31:14 -04:00
|
|
|
end
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :commits, only: [:show], constraints: { id: /(?:[^.]|\.(?!atom$))+/, format: /atom/ }
|
|
|
|
resources :compare, only: [:index, :create]
|
|
|
|
|
|
|
|
scope do
|
|
|
|
get(
|
|
|
|
'/blame/*id',
|
|
|
|
to: 'blame#show',
|
|
|
|
constraints: { id: /.+/, format: /(html|js)/ },
|
|
|
|
as: :blame
|
|
|
|
)
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-08-09 00:34:29 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :network, only: [:show], constraints: { id: /(?:[^.]|\.(?!json$))+/, format: /json/ }
|
|
|
|
resources :graphs, only: [:show], constraints: { id: /(?:[^.]|\.(?!json$))+/, format: /json/ } do
|
|
|
|
member do
|
|
|
|
get :commits
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-02-19 12:05:35 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
get '/compare/:from...:to' => 'compare#show', :as => 'compare',
|
|
|
|
:constraints => { from: /.+/, to: /.+/ }
|
2014-11-13 15:06:19 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :snippets, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
get 'raw'
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-12-30 15:56:13 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :wikis, only: [:show, :edit, :destroy, :create], constraints: { id: /[a-zA-Z.0-9_\-\/]+/ } do
|
|
|
|
collection do
|
|
|
|
get :pages
|
|
|
|
put ':id' => 'wikis#update'
|
|
|
|
get :git_access
|
|
|
|
end
|
2012-11-19 14:34:05 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
member do
|
|
|
|
get 'history'
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2013-05-06 08:10:55 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resource :repository, only: [:show, :create] do
|
|
|
|
member do
|
|
|
|
get 'archive', constraints: { format: Gitlab::Regex.archive_formats_regex }
|
|
|
|
end
|
|
|
|
end
|
2011-12-29 14:44:16 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :services, constraints: { id: /[^\/]+/ }, only: [:index, :edit, :update] do
|
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-11-16 12:19:18 -05:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :deploy_keys, constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
put :enable
|
|
|
|
put :disable
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resource :fork, only: [:new, :create]
|
|
|
|
resource :import, only: [:new, :create, :show]
|
|
|
|
|
|
|
|
resources :refs, only: [] do
|
|
|
|
collection do
|
|
|
|
get 'switch'
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
|
|
|
# tree viewer logs
|
|
|
|
get 'logs_tree', constraints: { id: Gitlab::Regex.git_reference_regex }
|
|
|
|
get 'logs_tree/:path' => 'refs#logs_tree', as: :logs_file, constraints: {
|
|
|
|
id: Gitlab::Regex.git_reference_regex,
|
|
|
|
path: /.*/
|
|
|
|
}
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-03-13 17:54:49 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :merge_requests, constraints: { id: /\d+/ }, except: [:destroy] do
|
|
|
|
member do
|
|
|
|
get :diffs
|
|
|
|
post :automerge
|
|
|
|
get :automerge_check
|
|
|
|
get :ci_status
|
|
|
|
end
|
|
|
|
|
|
|
|
collection do
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
get :update_branches
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-06-28 23:30:31 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :branches, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
|
|
|
resources :tags, only: [:index, :new, :create, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
|
|
|
resources :protected_branches, only: [:index, :create, :update, :destroy], constraints: { id: Gitlab::Regex.git_reference_regex }
|
|
|
|
|
|
|
|
resources :hooks, only: [:index, :create, :destroy], constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-09-17 10:06:03 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :milestones, except: [:destroy], constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
put :sort_issues
|
|
|
|
put :sort_merge_requests
|
|
|
|
end
|
2014-06-11 07:09:45 -04:00
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :labels, constraints: { id: /\d+/ } do
|
|
|
|
collection do
|
|
|
|
post :generate
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2013-05-07 10:57:29 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :issues, constraints: { id: /\d+/ }, except: [:destroy] do
|
|
|
|
collection do
|
|
|
|
post :bulk_update
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-09-25 18:45:30 -04:00
|
|
|
|
2015-03-13 11:22:03 -04:00
|
|
|
resources :project_members, except: [:new, :edit], constraints: { id: /[a-zA-Z.\/0-9_\-#%+]+/ } do
|
2015-01-24 13:02:58 -05:00
|
|
|
collection do
|
|
|
|
delete :leave
|
2012-10-24 07:20:53 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
# Used for import team
|
|
|
|
# from another project
|
|
|
|
get :import
|
|
|
|
post :apply_import
|
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2012-10-24 07:20:53 -04:00
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
resources :notes, only: [:index, :create, :destroy, :update], constraints: { id: /\d+/ } do
|
|
|
|
member do
|
|
|
|
delete :delete_attachment
|
|
|
|
end
|
2013-01-23 09:14:20 -05:00
|
|
|
end
|
2015-02-24 08:54:32 -05:00
|
|
|
|
|
|
|
resources :uploads, only: [:create] do
|
|
|
|
collection do
|
|
|
|
get ":secret/:filename", action: :show, as: :show, constraints: { filename: /.+/ }
|
|
|
|
end
|
2013-01-23 09:14:20 -05:00
|
|
|
end
|
2013-06-23 12:47:22 -04:00
|
|
|
end
|
2014-01-25 12:15:44 -05:00
|
|
|
|
2012-08-08 05:25:24 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-09-16 07:22:46 -04:00
|
|
|
|
2015-02-02 23:36:54 -05:00
|
|
|
get ':id' => 'namespaces#show', constraints: { id: /(?:[^.]|\.(?!atom$))+/, format: /atom/ }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|