feathersjs-ecosystem/feathers-authentication-management

resendVerifySignup failed

Closed this issue · 2 comments

on client trying to resend VerifySignup via:


service("authManagement").create({
            action: 'resendVerifySignup',
            value: {email: this."some@email.cc"}
        })

but get:

id for 'patch' can not be undefined, only 'null' when updating multiple entries

wrong setup or i'm miss something?

Okay, it because it expect id field in users service.

  var users = options.app.service(options.service);
  var usersIdName = users.id;

not sure its valid assumption

But any way i not understand how it should after. it make jsut PATCH request, without any info about calling action. how server should Handle it?

close because #81