resources_controller icon indicating copy to clipboard operation
resources_controller copied to clipboard

resources_controller rails plugin: rc makes RESTful controllers fun

Results 6 resources_controller issues
Sort by recently updated
recently updated
newest added

This pull request deals with #14 by eliminating the default behavior of synthesizing a whitelist (which likely includes attributes that a client isn't meant to be able to set directly,...

It's great to see this gem updated to deal with Rails 4 and 5, but the integration with the (then-)new strong parameters machinery seems to have a few rough spots....

Updating my app, I discovered that 'map.resources :requests' breaks recent versions of resources_controller --- this defines a 'request_path' named route, which in turn winds up clobbering resources_controller's internal method by...

resource_destroy won't use find_resource if it is overridden in the controller. Seems to be a result of this change: https://github.com/ianwhite/resources_controller/commit/cb77bc2325b1f165d08b0171fe501de70ef759ff

Is there a way to use the @resource that is created or the resource method in a before_filter?

Rails 2.3.2. I created a new project. Installed the resources_controller plugin. Generated scaffold for a model: ruby script\generate scoffold projects title:string description:text resources:text created_by:integer. Edited projects_controller to remove rails generated...