misc_pterodactyl-panel/resources/scripts/api/server/files/saveFileContents.ts

10 lines
302 B
TypeScript

import http from '@/api/http';
export default async (uuid: string, file: string, content: string): Promise<void> => {
await http.post(`/api/client/servers/${uuid}/files/write`, content, {
params: { file },
headers: {
'Content-Type': 'text/plain',
},
});
};