Skip to content

Instantly share code, notes, and snippets.

@hugodias
Created April 11, 2016 00:41
Show Gist options
  • Select an option

  • Save hugodias/40ddc4f0fb8ba6fb607dc9a16868b479 to your computer and use it in GitHub Desktop.

Select an option

Save hugodias/40ddc4f0fb8ba6fb607dc9a16868b479 to your computer and use it in GitHub Desktop.
Rails.application.routes.draw do
# ... some old code here
constraints subdomain: 'api' do
namespace :api, defaults: {format: 'json'} do
namespace :v1 do
resources :posts
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment