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