Add sms verification to collection

This commit is contained in:
Mussie Teshome 2023-06-08 11:52:39 +03:00
parent 8ac33a085c
commit 348cbf8c38

View File

@ -10,6 +10,7 @@ type CollectionList struct {
WebhookLog string
EmailTemplate string
OTP string
SMSVerificationRequest string
}
var (
@ -25,5 +26,6 @@ var (
WebhookLog: Prefix + "webhook_logs",
EmailTemplate: Prefix + "email_templates",
OTP: Prefix + "otps",
SMSVerificationRequest: Prefix + "sms_verification_requests",
}
)