add required sms methods
This commit is contained in:
parent
5ff139b649
commit
5c0ed48e67
@ -62,3 +62,11 @@ func (m *MockAccountService) SendUpsellSMS(ctx context.Context, inviterPhone, in
|
|||||||
args := m.Called(inviterPhone, inviteePhone)
|
args := m.Called(inviterPhone, inviteePhone)
|
||||||
return args.Get(0).(*models.SendSMSResponse), args.Error(1)
|
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
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user