1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00
unleash.unleash/src/lib/services/project-schema.ts

13 lines
392 B
TypeScript
Raw Normal View History

2021-09-14 20:36:40 +02:00
import joi from 'joi';
import { nameType } from '../routes/util';
2021-09-14 20:36:40 +02:00
export const projectSchema = joi
.object()
.keys({
id: nameType,
name: joi.string().required(),
description: joi.string().allow(null).allow('').optional(),
2023-03-16 15:29:52 +01:00
mode: joi.string().valid('open', 'protected').default('open'),
})
.options({ allowUnknown: false, stripUnknown: true });