gitlab-org--gitlab-foss/config/routes.rb

107 lines
2.5 KiB
Ruby
Raw Normal View History

2013-01-09 05:14:05 +00:00
require 'sidekiq/web'
require 'sidekiq/cron/web'
2013-01-09 05:14:05 +00:00
2015-11-25 16:18:44 +00:00
Rails.application.routes.draw do
concern :access_requestable do
post :request_access, on: :collection
post :approve_access_request, on: :member
end
2016-09-19 07:26:37 +00:00
concern :awardable do
post :toggle_award_emoji, on: :member
end
draw :sherlock
draw :development
draw :ci
2015-08-26 01:42:46 +00:00
2014-12-19 14:15:29 +00:00
use_doorkeeper do
2015-02-03 03:30:09 +00:00
controllers applications: 'oauth/applications',
authorized_applications: 'oauth/authorized_applications',
authorizations: 'oauth/authorizations'
2014-12-19 14:15:29 +00:00
end
2015-03-08 21:46:22 +00:00
use_doorkeeper_openid_connect
2015-03-27 02:06:19 +00:00
# Autocomplete
get '/autocomplete/users' => 'autocomplete#users'
get '/autocomplete/users/:id' => 'autocomplete#user'
get '/autocomplete/projects' => 'autocomplete#projects'
2017-08-30 07:48:55 +00:00
get '/autocomplete/award_emojis' => 'autocomplete#award_emojis'
2015-03-27 02:06:19 +00:00
# Search
get 'search' => 'search#show'
get 'search/autocomplete' => 'search#autocomplete', as: :search_autocomplete
2012-02-19 14:35:31 +00:00
2016-05-02 11:29:17 +00:00
# JSON Web Token
get 'jwt/auth' => 'jwt#auth'
# Health check
2016-05-13 07:51:13 +00:00
get 'health_check(/:checks)' => 'health_check#index', as: :health_check
scope path: '-' do
get 'liveness' => 'health#liveness'
get 'readiness' => 'health#readiness'
resources :metrics, only: [:index]
mount Peek::Railtie => '/peek'
# Boards resources shared between group and projects
resources :boards, only: [] do
resources :lists, module: :boards, only: [:index, :create, :update, :destroy] do
collection do
post :generate
end
resources :issues, only: [:index, :create, :update]
end
resources :issues, module: :boards, only: [:index, :update]
end
end
Support integration with Koding (online IDE) Koding: #index: landing page for Koding integration If enabled it will provide a link to open remote Koding instance url for now we are also providing the sneak preview video for how integration works in detail. Repository: check whether .koding.yml file exists on repository Projects: landing page: show Run in IDE (Koding) button if repo has stack file Projects: MR: show Run in IDE Koding button if repo has stack file on active branch ProjectHelpers: add_koding_stack: stack generator for provided project With this helper we will auto-generate the required stack template for a given project. For the feature we can request this base template from the running Koding instance on integration. Currently this will provide users to create a t2.nano instance on aws and it'll automatically configures the instance for basic requirements. Projects: empty state and landing page provide shortcuts to create stack projects_helper: use branch on checkout and provide an entry point This ${var.koding_queryString_branch} will be replaced with the branch provided in query string which will allow us to use same stack template for different branches of the same repository. ref: https://github.com/koding/koding/pull/8597/commits/b8c0e43c4c24bf132670aa8a3cfb0d634acfd09b projects_helper: provide sha info in query string to use existing vms With this change we'll be able to query existing vms on Koding side based on the commit id that they've created. ref: https://github.com/koding/koding/pull/8597/commits/1d630fadf31963fa6ccd3bed92e526761a30a343 Integration: Docs: Koding documentation added Disable /koding route if integration is disabled Use application settings to enable Koding Projects_helper: better indentation with strip_heredoc usage Projects_helper: return koding_url as is if there is no project provided current_settings: set koding_enabled: false by default Koding_Controller: to render not_found once integration is disabled Dashboard_specs: update spec for Koding enabled case Projects_Helper: make repo dynamic ref: https://github.com/koding/koding/pull/8597/commits/4d615242f45aaea4c4986be84ecc612b0bb1514c Updated documentation to have right format
2016-07-26 03:59:39 +00:00
# Koding route
get 'koding' => 'koding#index'
draw :api
draw :sidekiq
draw :help
draw :snippets
2013-03-24 22:17:20 +00:00
2015-04-10 13:22:31 +00:00
# Invites
resources :invites, only: [:show], constraints: { id: /[A-Za-z0-9_-]+/ } do
member do
post :accept
2015-04-10 14:37:02 +00:00
match :decline, via: [:get, :post]
2015-04-10 13:22:31 +00:00
end
end
2015-02-12 01:34:41 +00:00
resources :sent_notifications, only: [], constraints: { id: /\h{32}/ } do
member do
get :unsubscribe
end
end
# Spam reports
resources :abuse_reports, only: [:new, :create]
# Notification settings
resources :notification_settings, only: [:create, :update]
draw :google_api
draw :import
draw :uploads
draw :explore
draw :admin
draw :profile
draw :dashboard
draw :group
draw :user
draw :project
2011-10-08 21:36:38 +00:00
root to: "root#index"
draw :test if Rails.env.test?
get '*unmatched_route', to: 'application#route_not_found'
2011-10-08 21:36:38 +00:00
end