added the SendUpsellSMS to DevAccountService and MockApi

This commit is contained in:
2025-04-11 11:02:23 +03:00
parent 441e289854
commit 6597d6b6a2
2 changed files with 11 additions and 0 deletions

View File

@@ -653,3 +653,10 @@ func (das *DevAccountService) RequestAlias(ctx context.Context, publicKey string
Alias: alias,
}, nil
}
func (das *DevAccountService) SendUpsellSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error) {
logg.DebugCtxf(ctx, "sent an SMS", "inviterPhone", inviterPhone, "inviteePhone", inviteePhone)
return &models.SendSMSResponse{
Invitee: inviteePhone,
}, nil
}