search for: signout_path

Displaying 2 results from an estimated 2 matches for "signout_path".

2013 Jul 05
0
Sign in and sign out
...implemented the same configuration as it said: *sessions_helper.rb* def sign_out self.current_user = nil cookies.delete(:remember_token) end *sessions_controller.rb* def destroy sign_out redirect_to root_url end *application.html.erb* <%= link_to "Sign out", signout_path, method: "delete" %> *routes.rb* match ''/signout'', to: ''sessions#destroy'', via: ''delete'' I am able to sign in, but I can''t sign out. The problem is that there are not any log error and I don''t know what to...
2012 Jul 17
24
Static Pages from Railcast
Hi everyone, I need several pages to be static but also modify when requested. I try following the railcast from Ryan at http://railscasts.com/episodes/117-semi-static-pages?view=comments Here what I have done!! rails g scaffold Pages name:string permanentlink:string title:string author:string access_level:string is_published:boolean meta_description:string meta_keyword:string