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