Question -
I have a users_controller with a empty definition
def usrdets
end
Also have a view set up called usrdets.rhtml
Yet when I go to users/usrdets I get the exception:
Unknown action
No action responded to show
Now the users controller / model and all is part of the
restful_authentication plugin. So I thought perhaps I need to define
my method in the /lib/restful_authentication. However that didn’t
change anything.
I though an action would prompt rails to find the view and load it. ?