Frontend for new SSH page #22

Merged
esy merged 21 commits from #7-multiple-ssh-keys into main 2024-02-18 17:28:21 +00:00
Showing only changes of commit 318b4136b0 - Show all commits

View file

@ -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',