Allow raw image in appliance manager

This commit is contained in:
grossmj 2022-07-22 12:44:18 +02:00
parent 46c7c66362
commit cb7c445a0b

View File

@ -18,7 +18,7 @@ export class ApplianceService {
}
getUploadPath(server: Server, emulator: string, filename: string) {
return `${server.protocol}//${server.host}:${server.port}/${environment.current_version}/images/upload/${filename}`;
return `${server.protocol}//${server.host}:${server.port}/${environment.current_version}/images/upload/${filename}?allow_raw_image=true`;
}
updateAppliances(server: Server): Observable<Appliance[]> {