| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import AuthLayout from '@/layouts/Auth'
- import Login from '@/sections/Auth/Login'
- import LoginChooser from '@/sections/Auth/Login/components/LoginChooser'
- import LoginChallenge from '@/sections/Auth/Login/components/LoginChallenge'
- import SecretVerify from '@/sections/Auth/SecretVerify'
- import BindSecret from '@/sections/Auth/BindSecret'
- import SetSecretQuestion from '@/sections/Auth/SetSecretQuestion'
- import ResetSecretQuestion from '@/sections/Auth/ResetSecretQuestion'
- import Licenses from '@scope/views/licenses'
- import Layout from '@/layouts/RouterView'
- import Credential from '@Ai/views/credentials'
- const routes = [
- { name: 'Home', path: '/', redirect: '/dashboard' },
- {
- path: '/auth',
- component: AuthLayout,
- meta: { layout: 'full-screen' },
- redirect: '/auth/login',
- children: [
- {
- path: 'login',
- component: Login,
- children: [
- {
- name: 'Auth',
- path: '',
- component: LoginChallenge,
- meta: { layout: 'full-screen', auth: false, authPage: true, transitionName: 'slide' },
- },
- {
- name: 'LoginChooser',
- path: 'chooser',
- component: LoginChooser,
- meta: { layout: 'full-screen', auth: false, authPage: true, transitionName: 'slide' },
- },
- {
- name: 'LoginChooserDefault',
- path: 'default',
- component: LoginChooser,
- meta: { layout: 'full-screen', auth: false, authPage: true, transitionName: 'slide' },
- },
- ],
- },
- {
- name: 'SecretVerify',
- path: 'secretverify',
- component: SecretVerify,
- meta: { layout: 'full-screen', auth: false, authPage: true },
- },
- {
- name: 'BindSecret',
- path: 'bindsecret',
- component: BindSecret,
- meta: { layout: 'full-screen', auth: false, authPage: true },
- },
- {
- name: 'SetSecretQuestion',
- path: 'setsecretquestion',
- component: SetSecretQuestion,
- meta: { layout: 'full-screen', auth: false, authPage: true },
- },
- {
- name: 'ResetSecretQuestion',
- path: 'resetsecretquestion',
- component: ResetSecretQuestion,
- meta: { layout: 'full-screen', auth: false, authPage: true },
- },
- ],
- },
- {
- path: '/licenses',
- meta: {},
- component: Layout,
- children: [
- {
- name: 'Licenses',
- path: '',
- component: Licenses,
- },
- ],
- },
- {
- path: '/credentials',
- meta: {},
- component: Layout,
- children: [
- {
- name: 'Credential',
- path: '',
- component: Credential,
- },
- ],
- },
- ]
- export default routes
|