v2.0.5 #141

Merged
PxlLoewe merged 5 commits from staging into release 2025-12-27 15:23:33 +00:00
Showing only changes of commit e9a4c50a12 - Show all commits

View File

@@ -8,12 +8,13 @@ import { useSession } from "next-auth/react";
const AdminUserPage = () => {
const { data: session } = useSession();
return (
<>
<PaginatedTable
stickyHeaders
prismaModel="user"
searchFields={["publicId", "firstname", "lastname", "email", "discordAccounts.username"]}
searchFields={["publicId", "firstname", "lastname", "email"]}
include={{
discordAccounts: true,
}}