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

17 lines
541 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'),
defaultStickiness: joi
.string()
.valid('default', 'userId', 'sessionId', 'random')
.default('default'),
})
.options({ allowUnknown: false, stripUnknown: true });