umami/pages/settings/users/index.js

23 lines
428 B
JavaScript
Raw Normal View History

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';
2020-08-05 07:45:05 +02:00
2023-02-28 05:03:04 +01:00
export default function UsersPage({ disabled }) {
if (disabled) {
2020-08-05 07:45:05 +02:00
return null;
}
return (
2023-03-24 00:33:10 +01:00
<SettingsLayout>
<UsersList />
2023-03-24 00:33:10 +01:00
</SettingsLayout>
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,
},
};
}