From 537a6e1e09fda80e9bf276fbd4fa7dac26fb5fba Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Wed, 30 Apr 2025 17:11:41 +0300 Subject: [PATCH] register an handler to save an alias hint to the temporary value --- handlers/local.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handlers/local.go b/handlers/local.go index 69f5883..b289ea2 100644 --- a/handlers/local.go +++ b/handlers/local.go @@ -130,6 +130,8 @@ func (ls *LocalHandlerService) GetHandler(accountService remote.AccountService) ls.DbRs.AddLocalFunc("confirm_new_alias", appHandlers.ConfirmNewAlias) ls.DbRs.AddLocalFunc("check_account_created", appHandlers.CheckAccountCreated) ls.DbRs.AddLocalFunc("reset_api_call_failure", appHandlers.ResetApiCallFailure) + ls.DbRs.AddLocalFunc("save_alias_hint", appHandlers.SaveAliasHint) + ls.first = appHandlers.Init