1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/services/project-schema.ts
2021-09-14 20:36:40 +02:00

12 lines
321 B
TypeScript

import joi from 'joi';
import { nameType } from '../routes/util';
export const projectSchema = joi
.object()
.keys({
id: nameType,
name: joi.string().required(),
description: joi.string().allow(null).allow('').optional(),
})
.options({ allowUnknown: false, stripUnknown: true });