Sha256: 59cba55cdbdb230604f8ead93771cd6fbeb2c8db08e00e2fdfd9321b85f6d4ba
Contents?: true
Size: 608 Bytes
Versions: 1
Compression:
Stored size: 608 Bytes
Contents
ForemanBootdisk::Engine.routes.draw do resources :disks, :only => [] do get 'generic', :on => :collection get 'help', :on => :collection constraints(:id => /[^\/]+/) do get 'hosts/:id', :on => :collection, :to => 'disks#host' end end namespace :api, :defaults => {:format => 'json'} do scope "(:apiv)", :module => :v2, :defaults => {:apiv => 'v2'}, :apiv => /v1|v2/, :constraints => ApiConstraints.new(:version => 2) do get 'generic', :to => 'disks#generic' constraints(:id => /[^\/]+/) do get 'hosts/:id', :to => 'disks#host' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman_bootdisk-3.1.2 | config/routes.rb |