update controller and syncing
This commit is contained in:
parent
4dd6fa6d8a
commit
b5509ba162
3 changed files with 5 additions and 1 deletions
|
@ -6,4 +6,5 @@ export interface SynchronizeProtocolPresenceCommand {
|
|||
export interface ProtocolPresenceCommand {
|
||||
memberId: number;
|
||||
absent: boolean;
|
||||
excused: boolean;
|
||||
}
|
||||
|
|
|
@ -74,6 +74,7 @@ export default abstract class ProtocolPresenceCommandHandler {
|
|||
.update(protocolPresence)
|
||||
.set({
|
||||
absent: member.absent,
|
||||
excused: member.excused,
|
||||
})
|
||||
.where("memberId = :memberId", { memberId: member.memberId })
|
||||
.andWhere("protocolId = :protocolId", { protocolId })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue