fix : correct api endpoints
This commit is contained in:
parent
dcbce9942b
commit
318b4136b0
1 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ async function get_keys() {
|
|||
let password = document.getElementById("pass").value;
|
||||
let request = {auth: {user: username, pass: password}};
|
||||
try {
|
||||
const response = await fetch('http://localhost:8087/ldap/ssh', {
|
||||
const response = await fetch('https://api.account.skynet.ie/ldap/ssh/', {
|
||||
method: 'POST',
|
||||
body: JSON.stringify(request),
|
||||
mode: 'cors',
|
||||
|
@ -45,7 +45,7 @@ async function add_key() {
|
|||
let request = {auth: {user: username, pass: password}, key: key};
|
||||
|
||||
try {
|
||||
const response = await fetch('http://localhost:8087/ldap/ssh/add', {
|
||||
const response = await fetch('https://api.account.skynet.ie/ldap/ssh/add', {
|
||||
method: 'POST',
|
||||
body: JSON.stringify(request),
|
||||
mode: 'cors',
|
||||
|
@ -75,7 +75,7 @@ async function delete_key(row_idx,key) {
|
|||
let request = {auth: {user: username, pass: password}, key: key};
|
||||
|
||||
try {
|
||||
const response = await fetch('http://localhost:8087/ldap/ssh', {
|
||||
const response = await fetch('https://api.account.skynet.ie/ldap/ssh/', {
|
||||
method: 'DELETE',
|
||||
body: JSON.stringify(request),
|
||||
mode: 'cors',
|
||||
|
|
Loading…
Reference in a new issue