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. ? TIA Stuart -- http://en.wikipedia.org/wiki/Dark_ambient --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Bump... ... On 9/17/06, Dark Ambient <sambient-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> 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. ? > > TIA > Stuart > > -- > http://en.wikipedia.org/wiki/Dark_ambient >-- http://en.wikipedia.org/wiki/Dark_ambient --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
The key here is reading the error message "No action responded to show" So the method attempting to be ran is named "show" not "usrdets". On 9/17/06, Dark Ambient <sambient-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > Bump... > ... > > On 9/17/06, Dark Ambient <sambient-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > 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. ? > > > > TIA > > Stuart > > > > -- > > http://en.wikipedia.org/wiki/Dark_ambient > > > > > -- > http://en.wikipedia.org/wiki/Dark_ambient > > > >-- Thanks, -Steve http://www.stevelongdo.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---