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

migrate User Password Page

This commit is contained in:
grafixeyehero 2022-06-29 03:31:55 +03:00
parent 2d115bc6c8
commit d2df5830b5
4 changed files with 20 additions and 16 deletions

View file

@ -7,6 +7,7 @@ import SearchPage from './search';
import UserEditPage from './UserEditPage';
import UserLibraryAccessPage from './UserLibraryAccessPage';
import UserParentalControl from './UserParentalControl';
import UserPasswordPage from './UserPasswordPage';
import UserProfilesPage from './UserProfilesPage';
const AppRoutes = () => (
@ -60,6 +61,14 @@ const AppRoutes = () => (
</ConnectionRequired>
}
/>
<Route
path='userpassword.html'
element={
<ConnectionRequired>
<UserPasswordPage />
</ConnectionRequired>
}
/>
{/* Suppress warnings for unhandled routes */}
<Route path='*' element={null} />
</Route>