require 'sidekiq/web' require 'sidekiq/cron/web' require 'constraints/group_url_constrainer' Rails.application.routes.draw do concern :access_requestable do post :request_access, on: :collection post :approve_access_request, on: :member end concern :awardable do post :toggle_award_emoji, on: :member end draw :sherlock draw :development draw :ci use_doorkeeper do controllers applications: 'oauth/applications', authorized_applications: 'oauth/authorized_applications', authorizations: 'oauth/authorizations' end # Autocomplete get '/autocomplete/users' => 'autocomplete#users' get '/autocomplete/users/:id' => 'autocomplete#user' get '/autocomplete/projects' => 'autocomplete#projects' # Emojis resources :emojis, only: :index # Search get 'search' => 'search#show' get 'search/autocomplete' => 'search#autocomplete', as: :search_autocomplete # JSON Web Token get 'jwt/auth' => 'jwt#auth' # Health check get 'health_check(/:checks)' => 'health_check#index', as: :health_check # Koding route get 'koding' => 'koding#index' draw :api draw :sidekiq draw :help draw :snippets # Invites resources :invites, only: [:show], constraints: { id: /[A-Za-z0-9_-]+/ } do member do post :accept match :decline, via: [:get, :post] end end 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 :import draw :uploads draw :explore draw :admin draw :profile draw :dashboard draw :group draw :user draw :project root to: "root#index" # Since group show page is wildcard routing # we want all other routing to be checked before matching this one constraints(GroupUrlConstrainer.new) do scope(path: '*id', as: :group, constraints: { id: Gitlab::Regex.namespace_route_regex, format: /(html|json|atom)/ }, controller: :groups) do get '/', action: :show patch '/', action: :update put '/', action: :update delete '/', action: :destroy end end get '*unmatched_route', to: 'application#route_not_found' end