adding :instance_name option to load/authorize_resource - closes #44

This commit is contained in:
Ryan Bates
2010-08-06 09:35:07 -07:00
parent 47f0aa597e
commit a157b65fbf
2 changed files with 15 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ module CanCan
def load_resource
if !resource_instance && (parent? || member_action?)
@controller.instance_variable_set("@#{name}", load_resource_instance)
@controller.instance_variable_set("@#{instance_name}", load_resource_instance)
end
end
@@ -72,7 +72,7 @@ module CanCan
end
def resource_instance
@controller.instance_variable_get("@#{name}")
@controller.instance_variable_get("@#{instance_name}")
end
# The object that methods (such as "find", "new" or "build") are called on.
@@ -94,6 +94,10 @@ module CanCan
@params[:controller].sub("Controller", "").underscore.split('/').last.singularize
end
def instance_name
@options[:instance_name] || name
end
def collection_actions
[:index] + [@options[:collection]].flatten
end