Skip to content

Commit

Permalink
Add Compare modes to PhpStorm
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Dec 16, 2024
1 parent 1c76a49 commit 47d0de9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dashboard/new-dashboard/src/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ enum ROUTES {
PhpStormWithPluginsTests = `${ROUTE_PREFIX.PhpStorm}/testsWithPlugins`,
PhpStormCompare = `${ROUTE_PREFIX.PhpStorm}/${COMPARE_ROUTE}`,
PhpStormCompareBranches = `${ROUTE_PREFIX.PhpStorm}/${COMPARE_BRANCHES_ROUTE}`,
PhpStormCompareModes = `${ROUTE_PREFIX.PhpStorm}/${COMPARE_MODES_ROUTE}`,
KotlinDashboard = `${ROUTE_PREFIX.Kotlin}/${DASHBOARD_ROUTE}`,
KotlinDashboardDev = `${ROUTE_PREFIX.Kotlin}/${DASHBOARD_ROUTE}Dev`,
KotlinUserScenariosDashboardDev = `${ROUTE_PREFIX.Kotlin}/Scenarios${DASHBOARD_ROUTE}Dev`,
Expand Down Expand Up @@ -510,6 +511,10 @@ const PHPSTORM: Product = {
url: ROUTES.PhpStormCompareBranches,
label: COMPARE_BRANCHES_LABEL,
},
{
url: ROUTES.PhpStormCompareModes,
label: COMPARE_MODES_LABEL,
},
{
url: ROUTES.PhpStormWithPluginsDashboard,
label: "Dashboard with Plugins",
Expand Down Expand Up @@ -1457,6 +1462,15 @@ export function getNewDashboardRoutes(): ParentRouteRecord[] {
},
meta: { pageTitle: COMPARE_BRANCHES_LABEL },
},
{
path: ROUTES.PhpStormCompareModes,
component: () => import("./components/common/compare/CompareModes.vue"),
props: {
dbName: "perfint",
table: "phpstorm",
},
meta: { pageTitle: COMPARE_MODES_LABEL },
},
{
path: ROUTES.GoLandInspectionDashboard,
component: () => import("./components/goland/InspectionsDashboard.vue"),
Expand Down

0 comments on commit 47d0de9

Please sign in to comment.