misc_pterodactyl-panel/resources/assets/scripts/api/server/files/writeFileContents.ts

15 lines
448 B
TypeScript
Raw Normal View History

2019-05-27 22:30:49 +00:00
import http from "@/api/http";
export default (server: string, file: string, content: string): Promise<void> => {
return new Promise((resolve, reject) => {
http.post(`/api/client/servers/${server}/files/write`, content, {
params: { file },
headers: {
'Content-Type': 'text/plain; charset=utf-8',
},
})
.then(() => resolve())
.catch(reject);
});
}