umami/pages/settings/users/index.js

28 lines
652 B
JavaScript
Raw Normal View History

2023-03-24 18:55:20 +01:00
import AppLayout from 'components/layout/AppLayout';
2023-03-24 00:33:10 +01:00
import SettingsLayout from 'components/layout/SettingsLayout';
2023-01-10 08:59:26 +01:00
import UsersList from 'components/pages/settings/users/UsersList';
2023-04-21 04:58:16 +02:00
import useMessages from 'hooks/useMessages';
2020-08-05 07:45:05 +02:00
2023-02-28 05:03:04 +01:00
export default function UsersPage({ disabled }) {
2023-04-21 04:58:16 +02:00
const { formatMessage, labels } = useMessages();
2023-02-28 05:03:04 +01:00
if (disabled) {
2020-08-05 07:45:05 +02:00
return null;
}
return (
2023-04-21 04:58:16 +02:00
<AppLayout title={formatMessage(labels.users)}>
2023-03-24 18:55:20 +01:00
<SettingsLayout>
<UsersList />
</SettingsLayout>
</AppLayout>
2020-08-05 07:45:05 +02:00
);
}
2023-02-28 05:03:04 +01:00
export async function getServerSideProps() {
return {
props: {
disabled: !!process.env.CLOUD_MODE,
},
};
}