Domain support

This commit is contained in:
salvacybersec
2025-11-10 20:01:41 +03:00
parent dea1b874b5
commit f86cda2978
24 changed files with 3703 additions and 34 deletions

View File

@@ -20,6 +20,13 @@ const createTokenSchema = Joi.object({
.max(255)
.allow(null, '')
.optional(),
from_name: Joi.string()
.max(255)
.allow(null, '')
.optional()
.messages({
'string.max': 'From name must be less than 255 characters',
}),
template_type: Joi.string()
.max(50)
.default('bank')