Files
loop-etl-rocketchat/lib/factory/emoji.js
2026-05-13 20:03:28 +03:00

21 lines
299 B
JavaScript

const Joi = require('joi')
const validate = require('./validate')
//
// Define the schema
//
const schema = {
name: Joi.string(),
image: Joi.string(),
}
//
// Generate a valid object
//
module.exports = function (props) {
return {
type: 'emoji',
emoji: validate(schema, props)
}
}