RackHD/on-web-ui

View on GitHub
src/app/models/profile.ts

Summary

Maintainability
A
0 mins
Test Coverage
/*
 This defines the data model of RackHD profiles.
*/
export class Profile {
    id: string;
    name: string;
    hash: string;
    scope: string;
}

export const PROFILE_URL = {
    getAllUrl: '/profiles/metadata',
    getByIdentifierUrl: '/profiles/library/',
    getMetadataUrl: '/profiles/metadata/'
}