mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
import { Contribution } from '@entity/Contribution'
|
|
|
|
export const findContribution = async (id: number): Promise<Contribution | null> => {
|
|
return Contribution.findOne({ where: { id } })
|
|
}
|