mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Methode to get user creations.
This commit is contained in:
parent
5f8235c7af
commit
cd12d621fe
@ -33,13 +33,17 @@ export class AdminResolver {
|
|||||||
const userRepository = getCustomRepository(UserRepository)
|
const userRepository = getCustomRepository(UserRepository)
|
||||||
const user = await userRepository.findByEmail(email)
|
const user = await userRepository.findByEmail(email)
|
||||||
// TODO: Check user open creation state (Open creation)
|
// TODO: Check user open creation state (Open creation)
|
||||||
// SELECT * FROM transaction_creations WHERE state_user_id = loginUser.id AND target_date > Date - 2 Monat
|
|
||||||
// SELECT * FROM pending_creations WHERE userId = loginUser.id
|
|
||||||
// COUNT amount from 2 tables
|
|
||||||
// if amount < 3000 => Store in pending_creations
|
|
||||||
const creations = getUserCreations(user.id)
|
const creations = getUserCreations(user.id)
|
||||||
// UserAdmin.creations()
|
// UserAdmin.creations()
|
||||||
// TODO: Write pending creation to DB
|
// TODO: Write pending creation to DB
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getUserCreations(id: number): Promise<number[]> {
|
||||||
|
// SELECT * FROM transaction_creations WHERE state_user_id = loginUser.id AND target_date > Date - 2 Monat
|
||||||
|
// SELECT * FROM pending_creations WHERE userId = loginUser.id
|
||||||
|
// COUNT amount from 2 tables
|
||||||
|
// if amount < 3000 => Store in pending_creations
|
||||||
|
throw new Error('Function not implemented.')
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user