Skip to content
Snippets Groups Projects
Commit 8be80dbc authored by Igor Ignác's avatar Igor Ignác
Browse files

Merge branch '37-refactor-resources-page' into 'master'

Resolve "Refactor resources page"

Closes #37

See merge request muni-kypo-crp/frontend-angular/models/kypo-sandbox-model!41
parents c6683e2e 448b0557
Branches
Tags
No related merge requests found
14.2.0 Refactor of Resources page. Add information about version and gui access to virtual image.
14.1.0 Adjust Pool model to address backend changes. Add info to allocation unit model about its state. 14.1.0 Adjust Pool model to address backend changes. Add info to allocation unit model about its state.
14.0.0 Update to Angular 14. 14.0.0 Update to Angular 14.
13.1.0 Replace openstack with terraform 13.1.0 Replace openstack with terraform
......
export class OwnerSpecified {
version: string;
guiAccess: boolean;
}
import { OwnerSpecified } from './owner-specified';
export class VirtualImage { export class VirtualImage {
osDistro: string; osDistro: string;
osType: string; osType: string;
...@@ -13,4 +15,5 @@ export class VirtualImage { ...@@ -13,4 +15,5 @@ export class VirtualImage {
defaultUser: string; defaultUser: string;
updatedAt: Date; updatedAt: Date;
createdAt: Date; createdAt: Date;
ownerSpecified: OwnerSpecified;
} }
...@@ -57,3 +57,4 @@ export { Quota } from './lib/resources/quota'; ...@@ -57,3 +57,4 @@ export { Quota } from './lib/resources/quota';
// VM IMAGES // VM IMAGES
export { VirtualImage } from './lib/vm-images/virtual-image'; export { VirtualImage } from './lib/vm-images/virtual-image';
export { OwnerSpecified } from './lib/vm-images/owner-specified';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment