Skip to content

Instantly share code, notes, and snippets.

@azuby
Last active December 11, 2015 06:48
Show Gist options
  • Save azuby/4561869 to your computer and use it in GitHub Desktop.
Save azuby/4561869 to your computer and use it in GitHub Desktop.
# routes
namespace :api, path: '/' do
constraints :subdomain => 'api' do
get 'users' => 'users#index'
end
end
# url_for
link_to "Api User", api_users_path
#=> yourdomain.com/users
link_to "Api User", api_users_path(subdomain: "api")
#=> api.yourdomain.com/users
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment