On 04/29/2010 11:20 PM, storitel wrote: > another noob question from me.... > > is there an easy way to remove *all* visibility for guests... so the > only thing visible for the app until a user logs in is the login/ > signup screen itself (no sight of the main navigation tabs etc) and > any attempt to go to any other page without login either fails or goes > back to the login screen?
http://cookbook.hobocentral.net/recipes/10-make-a-private-hobo-app class ApplicationController < ActionController::Base ... before_filter :login_required end ? -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
