Skip to content

Commit

Permalink
update callback
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioLangaritaBenitez committed Oct 22, 2024
1 parent 33970fd commit 7f5f8c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/callback.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@
localStorage.setItem("interLink_available",response.data.config?.interLink_available);
const authData= JSON.stringify({
"authenticated":true,
"user":users,
"password": "tokens['access_token']",
"user":JSON.parse(users).name,
"password": "",
"token": tokens['access_token'],
"endpoint": localStorage.getItem('api')})
"endpoint": localStorage.getItem('api')})
localStorage.setItem("authData",authData);
var url_redirect = window.location.origin + "/#/ui/services"
window.location.href = url_redirect
Expand Down

0 comments on commit 7f5f8c0

Please sign in to comment.