Skip to content

Commit

Permalink
[server][dashboard][protocol] Remove deprecated Project DB config fea…
Browse files Browse the repository at this point in the history
…ture
  • Loading branch information
jankeromnes committed Sep 12, 2022
1 parent 12bb47c commit 9b4630c
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 496 deletions.
7 changes: 0 additions & 7 deletions components/dashboard/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ const TeamSettings = React.lazy(() => import(/* webpackPrefetch: true */ "./team
const TeamBilling = React.lazy(() => import(/* webpackPrefetch: true */ "./teams/TeamBilling"));
const TeamUsage = React.lazy(() => import(/* webpackPrefetch: true */ "./teams/TeamUsage"));
const NewProject = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/NewProject"));
const ConfigureProject = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/ConfigureProject"));
const Projects = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/Projects"));
const Project = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/Project"));
const Events = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/Events"));
Expand Down Expand Up @@ -435,9 +434,6 @@ function App() {
if (resourceOrPrebuild === "settings") {
return <ProjectSettings />;
}
if (resourceOrPrebuild === "configure") {
return <ConfigureProject />;
}
if (resourceOrPrebuild === "variables") {
return <ProjectVariables />;
}
Expand Down Expand Up @@ -487,9 +483,6 @@ function App() {
if (resourceOrPrebuild === "settings") {
return <ProjectSettings />;
}
if (resourceOrPrebuild === "configure") {
return <ConfigureProject />;
}
if (resourceOrPrebuild === "variables") {
return <ProjectVariables />;
}
Expand Down
1 change: 0 additions & 1 deletion components/dashboard/src/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ export default function Menu() {
// project sub-pages
"prebuilds",
"settings",
"configure",
"variables",
].includes(resource)
) {
Expand Down
308 changes: 0 additions & 308 deletions components/dashboard/src/projects/ConfigureProject.tsx

This file was deleted.

Loading

0 comments on commit 9b4630c

Please sign in to comment.