add handler for catching back navigations

This commit is contained in:
Carlosokumu 2024-12-04 08:20:43 +03:00
parent c5ebdbf85b
commit 5c202741d6
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

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