ruby on rails - force user to register -


Before continuing, can the "login" user be required to register? This scenario occurs when a user logs in via Facebook or any other Oath / Open ID provider and does not require all necessary registration data in the session.

Here my application is controller and I am trying this necessary_revention method, but in some way it ends in the unlimited loop, which is certain what is happening.

You before_filter to the UsersController Needing to stop running on # edit requires before_filter to redirect.

  class UsersController skip_before_filter: require_registration ,: only = & gt; : Edit # ... end  

Comments