7 lines
231 B
TypeScript
7 lines
231 B
TypeScript
import http from '@/api/http'
|
|
|
|
const unmountMedia = (serverUuid: string, mediaUuid: string) => {
|
|
return http.post(`/api/client/servers/${serverUuid}/settings/hardware/media/${mediaUuid}/unmount`)
|
|
}
|
|
|
|
export default unmountMedia
|