This commit is contained in:
boufni95 2025-09-24 17:39:48 +00:00
parent 378f263aad
commit 170bdf2e4a

View file

@ -41,7 +41,6 @@ export class DebitManager {
GetDebitAuthorizations = async (ctx: Types.UserContext): Promise<Types.DebitAuthorizations> => { GetDebitAuthorizations = async (ctx: Types.UserContext): Promise<Types.DebitAuthorizations> => {
const allDebitsAccesses = await this.storage.debitStorage.GetAllUserDebitAccess(ctx.app_user_id) const allDebitsAccesses = await this.storage.debitStorage.GetAllUserDebitAccess(ctx.app_user_id)
console.log("allDebitsAccesses", allDebitsAccesses)
const debits: Types.DebitAuthorization[] = allDebitsAccesses.map(access => ({ const debits: Types.DebitAuthorization[] = allDebitsAccesses.map(access => ({
debit_id: access.serial_id.toString(), debit_id: access.serial_id.toString(),
authorized: access.authorized, authorized: access.authorized,