10 lines
317 B
Go
10 lines
317 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import "context"
|
||
|
|
|
||
|
|
// ProfileRepository updates member profile verification flags (Mongo in P4).
|
||
|
|
type ProfileRepository interface {
|
||
|
|
SetBusinessEmailVerified(ctx context.Context, tenantID, uid, email string) error
|
||
|
|
SetBusinessPhoneVerified(ctx context.Context, tenantID, uid, phone string) error
|
||
|
|
}
|