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 (7 loc) 135 B
'use strict'; module.exports = async (ctx, next) => { if (!ctx.state.user) { return ctx.unauthorized(); } await next(); };