update LastLogin on login, show it.

remove end date for filter pubs for month;
fix stats end date
This commit is contained in:
Dobromir Popov
2024-04-25 20:22:36 +03:00
parent 09c45f404b
commit af9fc6af97
3 changed files with 11 additions and 5 deletions

View File

@ -146,7 +146,7 @@ export const authOptions: NextAuthOptions = {
//user.permissions = dbUser.permissions;
const session = { ...user };
prisma.publisher.update({
await prisma.publisher.update({
where: { id: dbUser.id },
data: { lastLogin: new Date() }
});