2022-04-12 14:20:17 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/command/preparation"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2022-04-12 14:20:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Phone struct {
|
2023-03-14 19:20:38 +00:00
|
|
|
Number domain.PhoneNumber
|
2022-04-12 14:20:17 +00:00
|
|
|
Verified bool
|
2023-08-03 04:42:59 +00:00
|
|
|
|
|
|
|
// ReturnCode is used if the Verified field is false
|
|
|
|
ReturnCode bool
|
2022-04-12 14:20:17 +00:00
|
|
|
}
|
|
|
|
|
2023-07-10 08:07:10 +00:00
|
|
|
func (c *Commands) newPhoneCode(ctx context.Context, filter preparation.FilterToQueryReducer, alg crypto.EncryptionAlgorithm) (*CryptoCode, error) {
|
|
|
|
return c.newCode(ctx, filter, domain.SecretGeneratorTypeVerifyPhoneCode, alg)
|
2022-04-12 14:20:17 +00:00
|
|
|
}
|