misc_pterodactyl-panel/resources/scripts/api/account/webauthn/deleteWebauthnKey.ts
2021-07-17 14:45:23 -06:00

9 lines
258 B
TypeScript

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);
});
};