Add admin area link to view config
This commit is contained in:
parent
964a1436ce
commit
6d909a4a97
3 changed files with 11 additions and 0 deletions
|
@ -13,6 +13,7 @@ export interface Allocation {
|
|||
|
||||
export interface Server {
|
||||
id: string;
|
||||
internalId: number;
|
||||
uuid: string;
|
||||
name: string;
|
||||
node: string;
|
||||
|
@ -43,6 +44,7 @@ export interface Server {
|
|||
|
||||
export const rawDataToServerObject = ({ attributes: data }: FractalResponseData): Server => ({
|
||||
id: data.identifier,
|
||||
internalId: data.internal_id,
|
||||
uuid: data.uuid,
|
||||
name: data.name,
|
||||
node: data.node,
|
||||
|
|
Reference in a new issue