Merge branch '#8_deal_with_new_auth_process' into 'main'

feat: adjust any form that takes the users username and pass so its in the auth field.

Closes #8

See merge request compsoc1/skynet/ldap/frontend!11
This commit is contained in:
silver 2023-12-27 14:49:29 +00:00
commit 520464b73d
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@
const user = formData.get("user");
const pass = formData.get("pass");
const value = formData.get("value");
const object = {user: user, pass: pass, field: field, value: value}
const object = {auth: {user: user, pass: pass}, field: field, value: value}
fetch('https://api.account.skynet.ie/ldap/update', {
method: 'POST',
body: JSON.stringify(object),

View file

@ -52,7 +52,7 @@
const pass = formData.get("pass");
const newPW = formData.get("newPW");
if (newPW === formData.get("newPWConfirm")) {
const object = {user: user, pass: pass, field: "userPassword", value: newPW}
const object = {auth: {user: user, pass: pass}, field: "userPassword", value: newPW}
fetch('https://api.account.skynet.ie/ldap/update', {
method: 'POST',
body: JSON.stringify(object),