diff --git a/workspaces/frontend/src/app/pages/Workspaces/Workspaces.tsx b/workspaces/frontend/src/app/pages/Workspaces/Workspaces.tsx index 031e5da1..f86a7d0f 100644 --- a/workspaces/frontend/src/app/pages/Workspaces/Workspaces.tsx +++ b/workspaces/frontend/src/app/pages/Workspaces/Workspaces.tsx @@ -95,6 +95,7 @@ export const Workspaces: React.FunctionComponent = () => { state: WorkspaceState.Paused, stateMessage: 'It is paused.', }, + endpoints: ['endpoint1', 'endpoint2'], }, { name: 'My Other Jupyter Notebook', @@ -140,6 +141,7 @@ export const Workspaces: React.FunctionComponent = () => { state: WorkspaceState.Running, stateMessage: 'It is running.', }, + endpoints: ['endpoint3', 'endpoint4'], }, ]; diff --git a/workspaces/frontend/src/shared/types.ts b/workspaces/frontend/src/shared/types.ts index 577c371b..a351a772 100644 --- a/workspaces/frontend/src/shared/types.ts +++ b/workspaces/frontend/src/shared/types.ts @@ -73,6 +73,7 @@ export interface Workspace { podConfig: string; }; status: WorkspaceStatus; + endpoints: string[]; } export type WorkspacesColumnNames = {