Merge pull request #2544 from riking/activation
Don't redirect to login when activating account...
This commit is contained in:
commit
844edb31e7
|
@ -18,6 +18,7 @@ class UsersController < ApplicationController
|
||||||
:create,
|
:create,
|
||||||
:get_honeypot_value,
|
:get_honeypot_value,
|
||||||
:activate_account,
|
:activate_account,
|
||||||
|
:perform_account_activation,
|
||||||
:send_activation_email,
|
:send_activation_email,
|
||||||
:authorize_email,
|
:authorize_email,
|
||||||
:password_reset]
|
:password_reset]
|
||||||
|
@ -277,7 +278,7 @@ class UsersController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def activate_account
|
def activate_account
|
||||||
expires_now()
|
expires_now
|
||||||
render layout: 'no_js'
|
render layout: 'no_js'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue