9 lines
326 B
TypeScript
9 lines
326 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default (uuid: string, name: string, description?: string): Promise<void> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.post(`/api/client/servers/${uuid}/settings/rename`, { name, description })
|
|
.then(() => resolve())
|
|
.catch(reject);
|
|
});
|
|
};
|