mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
migrate User Library Access Page
This commit is contained in:
parent
3f8b305995
commit
5d29529562
4 changed files with 27 additions and 24 deletions
|
@ -5,6 +5,7 @@ import ConnectionRequired from '../components/ConnectionRequired';
|
|||
import NewUserPage from './NewUserPage';
|
||||
import SearchPage from './search';
|
||||
import UserEditPage from './UserEditPage';
|
||||
import UserLibraryAccessPage from './UserLibraryAccessPage';
|
||||
import UserProfilesPage from './UserProfilesPage';
|
||||
|
||||
const AppRoutes = () => (
|
||||
|
@ -42,6 +43,14 @@ const AppRoutes = () => (
|
|||
</ConnectionRequired>
|
||||
}
|
||||
/>
|
||||
<Route
|
||||
path='userLibraryAccessPage.html'
|
||||
element={
|
||||
<ConnectionRequired>
|
||||
<UserLibraryAccessPage />
|
||||
</ConnectionRequired>
|
||||
}
|
||||
/>
|
||||
{/* Suppress warnings for unhandled routes */}
|
||||
<Route path='*' element={null} />
|
||||
</Route>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue