mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-17 06:14:27 +01:00
14 lines
226 B
JavaScript
14 lines
226 B
JavaScript
|
|
const { prisma } = require('../../prisma')
|
|
|
|
const getUserByPubKey = (pubKey) => {
|
|
if (!pubKey) return null;
|
|
return prisma.user.findFirst({
|
|
where: { pubKey }
|
|
})
|
|
}
|
|
|
|
|
|
module.exports = {
|
|
getUserByPubKey,
|
|
} |