diff --git a/packages/playground/src/App.vue b/packages/playground/src/App.vue index 3bb673370a..d6d979071f 100644 --- a/packages/playground/src/App.vue +++ b/packages/playground/src/App.vue @@ -320,6 +320,12 @@ const routes: AppRoute[] = [ route: DashboardRoutes.Deploy.YourContracts, tooltip: "Explore and modify your TFChain contracts.", }, + { + title: "Your Deployments", + icon: "mdi-file-document-edit", + route: DashboardRoutes.Deploy.YourDeployments, + tooltip: "Explore and modify your TFChain contracts.", + }, { title: "Images", icon: "mdi-open-in-new", diff --git a/packages/playground/src/dashboard/deployment_list.vue b/packages/playground/src/dashboard/deployment_list.vue new file mode 100644 index 0000000000..bb61a65d84 --- /dev/null +++ b/packages/playground/src/dashboard/deployment_list.vue @@ -0,0 +1,41 @@ + + + diff --git a/packages/playground/src/router/index.ts b/packages/playground/src/router/index.ts index 6f0d5d92e5..2d2ec047e4 100644 --- a/packages/playground/src/router/index.ts +++ b/packages/playground/src/router/index.ts @@ -675,6 +675,22 @@ function createDeployRoutes(): RouteRecordRaw[] { info: { page: "info/contracts_list.md" }, }, }, + { + path: DashboardRoutes.Deploy.YourContracts, + component: () => import("../dashboard/contracts_list.vue"), + meta: { + title: "Your Contracts List", + info: { page: "info/deployment_list.md" }, + }, + }, + { + path: DashboardRoutes.Deploy.YourDeployments, + component: () => import("../dashboard/deployment_list.vue"), + meta: { + title: "Your Contracts List", + info: { page: "info/deployment_list.md" }, + }, + }, { path: DashboardRoutes.Deploy.SSHKey, diff --git a/packages/playground/src/router/routes.ts b/packages/playground/src/router/routes.ts index dc670ef690..727dc30e71 100644 --- a/packages/playground/src/router/routes.ts +++ b/packages/playground/src/router/routes.ts @@ -6,6 +6,8 @@ enum DeployRoutes { Orchestrators = "/deploy/orchestrators/", Applications = "/deploy/applications/", YourContracts = "/deploy/your-contracts/", + YourDeployments = "/deploy/your-deployments/", + Images = "https://hub.grid.tf/", SSHKey = "/deploy/sshkey/", }