diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-03-28 21:19:46 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-03-28 21:19:46 +0200 |
commit | 31b59b477459d4f26ed8ef089a0e5553fb6a332b (patch) | |
tree | 70de15dc172045d01ad45718f55c22d5ca43b354 /server/helpers/custom-validators/remote | |
parent | d07137b90b2b2b0c1e93a6f0e7bf8719b133027c (diff) | |
download | PeerTube-31b59b477459d4f26ed8ef089a0e5553fb6a332b.tar.gz PeerTube-31b59b477459d4f26ed8ef089a0e5553fb6a332b.tar.zst PeerTube-31b59b477459d4f26ed8ef089a0e5553fb6a332b.zip |
Server: add nsfw attribute
Diffstat (limited to 'server/helpers/custom-validators/remote')
-rw-r--r-- | server/helpers/custom-validators/remote/videos.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/helpers/custom-validators/remote/videos.js b/server/helpers/custom-validators/remote/videos.js index 9a9055676..df8f8a22e 100644 --- a/server/helpers/custom-validators/remote/videos.js +++ b/server/helpers/custom-validators/remote/videos.js | |||
@@ -87,6 +87,7 @@ function isCommonVideoAttributesValid (video) { | |||
87 | videosValidators.isVideoDateValid(video.updatedAt) && | 87 | videosValidators.isVideoDateValid(video.updatedAt) && |
88 | videosValidators.isVideoCategoryValid(video.category) && | 88 | videosValidators.isVideoCategoryValid(video.category) && |
89 | videosValidators.isVideoLicenceValid(video.licence) && | 89 | videosValidators.isVideoLicenceValid(video.licence) && |
90 | videosValidators.isVideoNSFWValid(video.nsfw) && | ||
90 | videosValidators.isVideoDescriptionValid(video.description) && | 91 | videosValidators.isVideoDescriptionValid(video.description) && |
91 | videosValidators.isVideoDurationValid(video.duration) && | 92 | videosValidators.isVideoDurationValid(video.duration) && |
92 | videosValidators.isVideoInfoHashValid(video.infoHash) && | 93 | videosValidators.isVideoInfoHashValid(video.infoHash) && |