sms-address-pin-reset #14

Merged
carlos merged 12 commits from sms-address-pin-reset into master 2025-04-28 10:27:12 +02:00
Showing only changes of commit 5c0ed48e67 - Show all commits

View File

@ -62,3 +62,11 @@ func (m *MockAccountService) SendUpsellSMS(ctx context.Context, inviterPhone, in
args := m.Called(inviterPhone, inviteePhone)
return args.Get(0).(*models.SendSMSResponse), args.Error(1)
}
func (m *MockAccountService) SendPINResetSMS(ctx context.Context, admin, phone string) error {
return nil
}
func (m *MockAccountService) SendAddressSMS(ctx context.Context, publicKey, originPhone string) error {
return nil
}