1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

migrate User Profile Page

This commit is contained in:
grafixeyehero 2022-06-29 04:16:20 +03:00
parent d2df5830b5
commit ab02f210ca
7 changed files with 41 additions and 31 deletions

View file

@ -8,6 +8,7 @@ import UserEditPage from './UserEditPage';
import UserLibraryAccessPage from './UserLibraryAccessPage';
import UserParentalControl from './UserParentalControl';
import UserPasswordPage from './UserPasswordPage';
import UserProfilePage from './UserProfilePage';
import UserProfilesPage from './UserProfilesPage';
const AppRoutes = () => (
@ -69,6 +70,14 @@ const AppRoutes = () => (
</ConnectionRequired>
}
/>
<Route
path='myprofile.html'
element={
<ConnectionRequired>
<UserProfilePage />
</ConnectionRequired>
}
/>
{/* Suppress warnings for unhandled routes */}
<Route path='*' element={null} />
</Route>