Add admin area link to view config

This commit is contained in:
Charles Morgan
2020-11-02 00:14:02 -05:00
parent 964a1436ce
commit 6d909a4a97
3 changed files with 11 additions and 0 deletions

View File

@@ -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,