Skip to content

Fingertips/risosu-san

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Risosu-san

A lean mixin for ActionController::Base that assists in situations where a resource controller is nested under another resource. Eg:

/members/24/passwords/new

In this example, retrieving the parent resource is as simple as:

class PasswordsController < ActionController::Base
  find_parent_resource :only => :new

  def new
    @parent_resource # => #<Member id: 24>
    @member # => #<Member id: 24>
  end
end

See RisosuSan for a bit more in depth documentation.

About

RisosuSan is a Rails plugin that assists in situations where a resource controller is nested under another resource.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages