File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
services/brig/src/Brig/API Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,8 @@ import Brig.Options hiding (Timeout, internalEvents)
116
116
import Brig.Password
117
117
import qualified Brig.Queue as Queue
118
118
import Brig.Sem.BrigTime (BrigTime )
119
- import Brig.Sem.CodeStore hiding (mkPasswordResetKey )
119
+ import Brig.Sem.CodeStore (CodeStore )
120
+ import qualified Brig.Sem.CodeStore as E
120
121
import qualified Brig.Team.DB as Team
121
122
import Brig.Types
122
123
import Brig.Types.Code (Timeout (.. ))
@@ -1002,7 +1003,7 @@ completePasswordReset ident code pw = do
1002
1003
checkNewIsDifferent uid pw
1003
1004
lift $ do
1004
1005
wrapClient $ Data. updatePassword uid pw
1005
- liftSem $ codeDelete key
1006
+ liftSem $ E. codeDelete key
1006
1007
wrapClient $ revokeAllCookies uid
1007
1008
1008
1009
-- | Pull the current password of a user and compare it against the one about to be installed.
You can’t perform that action at this time.
0 commit comments