9 lines
208 B
JavaScript
Raw Normal View History

import * as yup from 'yup';
import { translatedErrors } from 'strapi-helper-plugin';
const schema = yup.object().shape({
name: yup.string().required(translatedErrors.required),
});
export default schema;