add handler to update profile items

This commit is contained in:
Carlosokumu 2024-12-02 20:35:56 +03:00
parent fd586d09c3
commit 3e0bbe5ffe
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -121,6 +121,7 @@ func (ls *LocalHandlerService) GetHandler(accountService remote.AccountServiceIn
ls.DbRs.AddLocalFunc("check_transactions", ussdHandlers.CheckTransactions)
ls.DbRs.AddLocalFunc("get_transactions", ussdHandlers.GetTransactionsList)
ls.DbRs.AddLocalFunc("view_statement", ussdHandlers.ViewTransactionStatement)
ls.DbRs.AddLocalFunc("update_all_profile_items", ussdHandlers.UpdateAllProfileItems)
return ussdHandlers, nil
}