mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
7 lines
253 B
TypeScript
7 lines
253 B
TypeScript
import { LoginElopageBuys } from '@entity/LoginElopageBuys'
|
|
|
|
export async function hasElopageBuys(email: string): Promise<boolean> {
|
|
const elopageBuyCount = await LoginElopageBuys.count({ where: { payerEmail: email } })
|
|
return elopageBuyCount > 0
|
|
}
|