mirror of
https://github.com/iptv-org/database.git
synced 2024-11-09 22:16:38 -05:00
Update channels.js
This commit is contained in:
parent
7e5feb43f3
commit
dda68979ce
1 changed files with 5 additions and 1 deletions
|
@ -29,5 +29,9 @@ module.exports = {
|
|||
),
|
||||
categories: Joi.array().items(Joi.string().regex(/^[a-z]+$/)),
|
||||
is_nsfw: Joi.boolean().strict().required(),
|
||||
logo: Joi.string().uri().allow(null)
|
||||
logo: Joi.string()
|
||||
.uri({
|
||||
scheme: ['https']
|
||||
})
|
||||
.allow(null)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue