UserCreateCheck.js 194 B

12345678
  1. 'use strict';
  2. const _ = require('lodash');
  3. module.exports = options => {
  4. return async function userCreateCheck(ctx, next) {
  5. await ctx.service.user.createCheck();
  6. await next();
  7. };
  8. };