2020-09-27 09:51:29 +02:00
|
|
|
import Settings from 'components/pages/Settings';
|
2022-10-28 01:42:57 +02:00
|
|
|
import useConfig from 'hooks/useConfig';
|
2022-12-27 01:57:59 +01:00
|
|
|
import useRequireLogin from 'hooks/useRequireLogin';
|
|
|
|
import React from 'react';
|
|
|
|
import UsersList from 'components/pages/UsersList';
|
2020-08-05 07:45:05 +02:00
|
|
|
|
2022-12-27 01:57:59 +01:00
|
|
|
export default function UsersPage() {
|
2020-08-06 04:04:02 +02:00
|
|
|
const { loading } = useRequireLogin();
|
2022-10-28 01:42:57 +02:00
|
|
|
const { adminDisabled } = useConfig();
|
2020-08-05 07:45:05 +02:00
|
|
|
|
2022-10-28 01:42:57 +02:00
|
|
|
if (adminDisabled || loading) {
|
2020-08-05 07:45:05 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2022-12-27 01:57:59 +01:00
|
|
|
<Settings>
|
|
|
|
<UsersList />
|
|
|
|
</Settings>
|
2020-08-05 07:45:05 +02:00
|
|
|
);
|
|
|
|
}
|