mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 13:11:43 +00:00
add pcideviceclaim and usbdeviceclaim models
Signed-off-by: andy.lee <andy.lee@suse.com> (cherry picked from commit 188f058df83ff545bc7e84a8131ba65a3ac8abd9)
This commit is contained in:
parent
bbade7e50c
commit
c16922c228
@ -0,0 +1,11 @@
|
||||
import SteveModel from '@shell/plugins/steve/steve-class';
|
||||
|
||||
/**
|
||||
* Class representing PCI Device Claim resource.
|
||||
* @extends SteveModal
|
||||
*/
|
||||
export default class PCIDeviceClaim extends SteveModel {
|
||||
cleanForSave(data, _forNew) {
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
import SteveModel from '@shell/plugins/steve/steve-class';
|
||||
|
||||
/**
|
||||
* Class representing USB Device Claim resource.
|
||||
* @extends SteveModal
|
||||
*/
|
||||
export default class USBDeviceClaim extends SteveModel {
|
||||
cleanForSave(data, _forNew) {
|
||||
return data;
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user