From 08deeca500ca4b47bbf3be1be8337c6ef856137c Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Thu, 17 Apr 2025 23:31:22 +0300 Subject: [PATCH] register handler to trigger address sms --- handlers/local.go | 1 + 1 file changed, 1 insertion(+) diff --git a/handlers/local.go b/handlers/local.go index 6f4963f..870a50e 100644 --- a/handlers/local.go +++ b/handlers/local.go @@ -124,6 +124,7 @@ func (ls *LocalHandlerService) GetHandler(accountService remote.AccountService) ls.DbRs.AddLocalFunc("get_suggested_alias", appHandlers.GetSuggestedAlias) ls.DbRs.AddLocalFunc("confirm_new_alias", appHandlers.ConfirmNewAlias) ls.DbRs.AddLocalFunc("check_account_created", appHandlers.CheckAccountCreated) + ls.DbRs.AddLocalFunc("send_address_sms", appHandlers.SendAddressSMS) ls.first = appHandlers.Init