Commit f8dcf63eb3a5e7dcd7a939256d9c9ef8854282e0
1 parent
7da907b4
Fix bug that would not allow login after using signup form
Signed-off-by: Victor Navarro <victor.matias.navarro@gmail.com> Signed-off-by: Vitor Barbosa <vitornga15@gmail.com> Signed-off-by: Matheus Miranda <matheusmirandalacerda@gmail.com>
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
plugins/oauth_client/lib/oauth_client_plugin.rb
... | ... | @@ -89,7 +89,8 @@ class OauthClientPlugin < Noosfero::Plugin |
89 | 89 | |
90 | 90 | def account_controller_filters |
91 | 91 | { |
92 | - :type => 'before_filter', :method_name => 'signup', | |
92 | + :type => 'before_filter', :method_name => 'xablau_signup', | |
93 | + :options => { :only => 'signup' }, | |
93 | 94 | :block => proc { |
94 | 95 | auth = session[:oauth_data] |
95 | 96 | ... | ... |