mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
chore: Clarify usage of window fields in UIWindowChangeUsername.js
/puter/src/UI/UIWindowChangeUsername.js 97:18 error 'api_origin' is not defined no-undef 101:44 error 'auth_token' is not defined no-undef
This commit is contained in:
parent
e3fb25cf45
commit
ff28d2919b
@ -94,11 +94,11 @@ async function UIWindowChangeUsername(options){
|
||||
$(el_window).find('.new-username').attr('disabled', true);
|
||||
|
||||
$.ajax({
|
||||
url: api_origin + "/change_username",
|
||||
url: window.api_origin + "/change_username",
|
||||
type: 'POST',
|
||||
async: true,
|
||||
headers: {
|
||||
"Authorization": "Bearer "+auth_token
|
||||
"Authorization": "Bearer "+window.auth_token
|
||||
},
|
||||
contentType: "application/json",
|
||||
data: JSON.stringify({
|
||||
|
Loading…
Reference in New Issue
Block a user