add pagespeed key to settings validation

This commit is contained in:
Vishnu Sreekumaran Nair
2025-05-05 16:06:24 -04:00
parent d4ed97992f
commit 86c31eaaf6

View File

@@ -255,6 +255,7 @@ const settingsValidation = joi.object({
ttl: joi.number().required().messages({
"string.empty": "TTL is required",
}),
pagespeedApiKey: joi.string().allow("").optional(),
});
const dayjsValidator = (value, helpers) => {