milkcocoa / grape-jbuilder

Use Jbuilder with Grape
MIT License
49 stars 18 forks source link

Routes using namespace are weird #1

Open bpinto opened 11 years ago

bpinto commented 11 years ago
resource :appointments do
  get nil, jbuilder: 'appointments' do
end

This is how one needs to write the routes in order for it to be the same as:

get do
end