Displaying 1 result from an estimated 1 matches for "user_read_authorized".
2010 Jan 22
11
Finding out where a variable is defined
I''m looking at code in a project. I have no clue what is being passed
into the resource parameter:
def read_authorized?(resource)
if resource.respond_to? :user_read_authorized?
resource.user_read_authorized? current_user
else
true
end
end
Is there any kind of debugging feature I can run to see what gets passed
into resource in this specific instance.
Also, user_read_authorized? is not defined anywhere else in application.
Is that legal i...