1
0
Fork 0

Merge branch 'atomaka/feature/api-subdomain' into 'master'

Constrain API to the api subdomain



See merge request !23
This commit is contained in:
Andrew Tomaka 2015-11-04 14:10:43 -05:00
commit 550fc91138
1 changed files with 6 additions and 4 deletions

View File

@ -29,10 +29,12 @@ Rails.application.routes.draw do
resources :versions, only: [:show]
end
namespace :api do
namespace :v1 do
resources :cards, only: [:index, :show]
resources :links, only: [:index, :show]
constraints subdomain: 'api' do
namespace :api, path: nil do
namespace :v1 do
resources :cards, only: [:index, :show]
resources :links, only: [:index, :show]
end
end
end
end