Ver a proveniência

pass auth token as string

pull/1/head
Jonathan Cobb há 5 anos
ascendente
cometimento
8ccb01dd14
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/_services/user.service.js

+ 1
- 1
src/_services/user.service.js Ver ficheiro

@@ -88,7 +88,7 @@ function approveAction(id, code, messages, errors) {
function sendAuthenticatorCode(id, code, verifyOnly, messages, errors) {
return fetch(`${config.apiUrl}/auth/authenticator`, postWithAuth({
account: id,
token: parseInt(code),
token: code,
verify: verifyOnly
}))
.then(handleCrudResponse(messages, errors))


Carregando…
Cancelar
Guardar