Added the Sheepstar API to the Archive

This commit is contained in:
2022-09-06 16:37:56 +02:00
parent d6c272cdaf
commit bb78376745
36 changed files with 5346 additions and 0 deletions

View File

@ -0,0 +1,15 @@
const Joi = require('joi');
module.exports.upload = Joi.object({
assetEnding: Joi.string()
.alphanum()
.min(3)
.max(10),
assetName: Joi.string()
.alphanum()
.min(5)
.max(20),
assetDescription: Joi.string()
.min(5)
.max(250)
});