Created
April 11, 2016 00:41
-
-
Save hugodias/40ddc4f0fb8ba6fb607dc9a16868b479 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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