sinatra-resources icon indicating copy to clipboard operation
sinatra-resources copied to clipboard

Feature requestish: common member route requirements

Open morbusg opened this issue 16 years ago • 0 comments

Would it be possible to somehow do the following:

resource :thingamaboo do
  member do |id|
    @thingamaboo = Thingamaboo.get(id)
    get do
      # do something with @thingamaboo
    end
  end
end

morbusg avatar Mar 16 '10 17:03 morbusg