Files
jellyseerr/src/pages/settings/services.tsx

17 lines
495 B
TypeScript

import SettingsLayout from '@app/components/Settings/SettingsLayout';
import SettingsServices from '@app/components/Settings/SettingsServices';
import useRouteGuard from '@app/hooks/useRouteGuard';
import { Permission } from '@app/hooks/useUser';
import type { NextPage } from 'next';
const ServicesSettingsPage: NextPage = () => {
useRouteGuard(Permission.ADMIN);
return (
<SettingsLayout>
<SettingsServices />
</SettingsLayout>
);
};
export default ServicesSettingsPage;