UNPKG

strapi-plugin-passwordless

Version:

A plugin for Strapi Headless CMS that provides ability to sign-in/sign-up to an application by link had sent to email.

10 lines (8 loc) 155 B
import * as yup from 'yup'; const schema = yup.object().shape({ token_length: yup .number() .min(5) .required(), }); export default schema;