Add team creation, team join and debug login screen
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import prisma from '~~/lib/prisma';
|
||||
|
||||
export default defineEventHandler(() => {
|
||||
return prisma.user.findMany({
|
||||
select: {
|
||||
id: true,
|
||||
name: true,
|
||||
email: true
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user