mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 08:44:46 +02:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default (identifier: string): Promise<void> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.delete(`/api/client/account/api-keys/${identifier}`)
|
|
.then(() => resolve())
|
|
.catch(reject);
|
|
});
|
|
};
|