Merge pull request #2646 from AreYouRlyScared/#2608
Add admin area link to view config
This commit is contained in:
commit
74b1776c00
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;
|
||||
|
@ -44,6 +45,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