mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2026-02-23 05:25:30 +01:00
feat: reset password (#1092)
This commit is contained in:
@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
|
||||
|
||||
import DashboardView from '@/views/DashboardView.vue'
|
||||
import LoginView from '@/views/LoginView.vue'
|
||||
import PasswordResetView from '@/views/PasswordResetView.vue'
|
||||
import ReactionView from '@/views/ReactionView.vue'
|
||||
import TicketView from '@/views/TicketView.vue'
|
||||
|
||||
@@ -12,25 +13,30 @@ const router = createRouter({
|
||||
path: '/',
|
||||
redirect: '/dashboard'
|
||||
},
|
||||
{
|
||||
path: '/reactions/:id?',
|
||||
name: 'reactions',
|
||||
component: ReactionView
|
||||
},
|
||||
{
|
||||
path: '/dashboard',
|
||||
name: 'dashboard',
|
||||
component: DashboardView
|
||||
},
|
||||
{
|
||||
path: '/tickets/:type/:id?',
|
||||
name: 'tickets',
|
||||
component: TicketView
|
||||
},
|
||||
{
|
||||
path: '/reactions/:id?',
|
||||
name: 'reactions',
|
||||
component: ReactionView
|
||||
},
|
||||
{
|
||||
path: '/login',
|
||||
name: 'login',
|
||||
component: LoginView
|
||||
},
|
||||
{
|
||||
path: '/tickets/:type/:id?',
|
||||
name: 'tickets',
|
||||
component: TicketView
|
||||
path: '/password-reset',
|
||||
name: 'password-reset',
|
||||
component: PasswordResetView
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user