mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-31 14:45:35 +00:00
7 lines
237 B
TypeScript
7 lines
237 B
TypeScript
import { LoginElopageBuys } from 'database'
|
|
|
|
export async function hasElopageBuys(email: string): Promise<boolean> {
|
|
const elopageBuyCount = await LoginElopageBuys.count({ where: { payerEmail: email } })
|
|
return elopageBuyCount > 0
|
|
}
|