Skip to content

Commit

Permalink
Deleted unused components and unused routes
Browse files Browse the repository at this point in the history
  • Loading branch information
jvJUCA committed Jun 19, 2024
1 parent 472e618 commit 5b2d86b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 19 deletions.
7 changes: 0 additions & 7 deletions src/router/modules/public.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import TestView from '@/views/public/TestView.vue'
import SignIn from '@/views/public/SignInView.vue'
import SignUp from '@/views/public/SignUpView.vue'
import Home from '@/views/public/HomeView.vue'
import LandingPage from '@/views/public/LandingPageView.vue'
import PageNotFound from '@/views/public/PageNotFoundView.vue'
import Help from '@/views/public/Help.vue'
Expand All @@ -26,12 +25,6 @@ export default [
meta: { authorize: [] },
component: SignUp,
},
{
path: '/home',
name: 'Home',
meta: { authorize: [] },
component: Home,
},
{
path: '/help',
name: 'Help',
Expand Down
2 changes: 1 addition & 1 deletion src/router/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ export function redirect() {
} else if (level == 1) {
return '/testslist'
} else {
return '/home'
return '/'
}
}
11 changes: 0 additions & 11 deletions src/views/public/HomeView.vue

This file was deleted.

0 comments on commit 5b2d86b

Please sign in to comment.