mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 17:42:33 +01:00
15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import http from '@/api/http';
|
|
|
|
interface Data {
|
|
to: string;
|
|
from: string;
|
|
}
|
|
|
|
export default (uuid: string, directory: string, files: Data[]): Promise<void> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.put(`/api/client/servers/${uuid}/files/rename`, { root: directory, files })
|
|
.then(() => resolve())
|
|
.catch(reject);
|
|
});
|
|
};
|