3235: Add test case.
[arvados.git] / services / api / config / routes.rb
1 Server::Application.routes.draw do
2   themes_for_rails
3
4   # See http://guides.rubyonrails.org/routing.html
5
6   namespace :arvados do
7     namespace :v1 do
8       resources :api_client_authorizations do
9         post 'create_system_auth', on: :collection
10       end
11       resources :api_clients
12       resources :authorized_keys
13       resources :collections do
14         get 'provenance', on: :member
15         get 'used_by', on: :member
16       end
17       resources :groups do
18         get 'contents', on: :collection
19         get 'contents', on: :member
20       end
21       resources :humans
22       resources :job_tasks
23       resources :jobs do
24         get 'queue', on: :collection
25         post 'cancel', on: :member
26       end
27       resources :keep_disks do
28         post 'ping', on: :collection
29       end
30       resources :keep_services do
31         get 'accessible', on: :collection
32       end
33       resources :links
34       resources :logs
35       resources :nodes do
36         post 'ping', on: :member
37       end
38       resources :pipeline_instances
39       resources :pipeline_templates
40       resources :repositories do
41         get 'get_all_permissions', on: :collection
42       end
43       resources :specimens
44       resources :traits
45       resources :user_agreements do
46         get 'signatures', on: :collection
47         post 'sign', on: :collection
48       end
49       resources :users do
50         get 'current', on: :collection
51         get 'system', on: :collection
52         post 'activate', on: :member
53         post 'setup', on: :collection
54         post 'unsetup', on: :member
55       end
56       resources :virtual_machines do
57         get 'logins', on: :member
58         get 'get_all_logins', on: :collection
59       end
60       get '/permissions/:uuid', :to => 'links#get_permissions'
61     end
62   end
63
64   # omniauth
65   match '/auth/:provider/callback', :to => 'user_sessions#create'
66   match '/auth/failure', :to => 'user_sessions#failure'
67
68   # Custom logout
69   match '/login', :to => 'user_sessions#login'
70   match '/logout', :to => 'user_sessions#logout'
71
72   match '/discovery/v1/apis/arvados/v1/rest', :to => 'arvados/v1/schema#index'
73
74   match '/static/login_failure', :to => 'static#login_failure', :as => :login_failure
75
76   # Send unroutable requests to an arbitrary controller
77   # (ends up at ApplicationController#render_not_found)
78   match '*a', :to => 'static#render_not_found'
79
80   root :to => 'static#home'
81 end