Fixed password reset.

This commit is contained in:
Martin Edenhofer 2016-08-15 22:15:11 +02:00
parent 172fc00155
commit d5012a296d

View file

@ -13,7 +13,9 @@ class Index extends App.ControllerContent
return return
# if we are logged in, no passwort reset is wanted, redirect to app # if we are logged in, no passwort reset is wanted, redirect to app
@authenticateCheckRedirect() if @authenticateCheck()
@navigate '#'
return
@navHide() @navHide()
@ -83,8 +85,15 @@ class Verify extends App.ControllerContent
constructor: -> constructor: ->
super super
# go back if feature is not enabled
if !@Config.get('user_lost_password')
@navigate '#'
return
# if we are logged in, no passwort reset is wanted, redirect to app # if we are logged in, no passwort reset is wanted, redirect to app
@authenticateCheckRedirect() if @authenticateCheck()
@navigate '#'
return
@navHide() @navHide()