Add useResource hook for fetching resource data
Add Support or authenticating using OIDC
This commit is contained in:
parent
0e0c43c4f5
commit
bd49f4314d
5 changed files with 265 additions and 64 deletions
|
@ -5,6 +5,7 @@ import Error from '@/views/Error'
|
|||
import Settings from '@/views/Settings/Settings'
|
||||
import { Capacitor } from '@capacitor/core'
|
||||
import { RouterProvider, createBrowserRouter } from 'react-router-dom'
|
||||
import AuthenticationLoading from '../views/Authorization/Authenticating'
|
||||
import ForgotPasswordView from '../views/Authorization/ForgotPasswordView'
|
||||
import LoginSettings from '../views/Authorization/LoginSettings'
|
||||
import LoginView from '../views/Authorization/LoginView'
|
||||
|
@ -92,6 +93,10 @@ const Router = createBrowserRouter([
|
|||
path: '/signup',
|
||||
element: <SignupView />,
|
||||
},
|
||||
{
|
||||
path: '/auth/:provider',
|
||||
element: <AuthenticationLoading />,
|
||||
},
|
||||
{
|
||||
path: '/landing',
|
||||
element: <Landing />,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue