Remove generateClientSecret and use the one the js sdk gives us.
This commit is contained in:
parent
cc3d27bd4b
commit
e68972fb1a
1 changed files with 1 additions and 13 deletions
|
@ -35,7 +35,7 @@ class PasswordReset {
|
||||||
baseUrl: homeserverUrl,
|
baseUrl: homeserverUrl,
|
||||||
idBaseUrl: identityUrl
|
idBaseUrl: identityUrl
|
||||||
});
|
});
|
||||||
this.clientSecret = generateClientSecret();
|
this.clientSecret = this.client.generateClientSecret();
|
||||||
this.identityServerDomain = identityUrl.split("://")[1];
|
this.identityServerDomain = identityUrl.split("://")[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,16 +89,4 @@ class PasswordReset {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// from Angular SDK
|
|
||||||
function generateClientSecret() {
|
|
||||||
var ret = "";
|
|
||||||
var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
||||||
|
|
||||||
for (var i = 0; i < 32; i++) {
|
|
||||||
ret += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = PasswordReset;
|
module.exports = PasswordReset;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue