misc_pterodactyl-panel/resources/scripts/api/account/webauthn/deleteWebauthnKey.ts

10 lines
258 B
TypeScript
Raw Normal View History

import http from '@/api/http';
export default (id: number): Promise<void> => {
return new Promise((resolve, reject) => {
http.delete(`/api/client/account/webauthn/${id}`)
.then(() => resolve())
.catch(reject);
});
};