Skip to content

Releases: joselfonseca/lighthouse-graphql-passport-auth

Emit event on registration

19 Feb 18:29
ac526cb
Compare
Choose a tag to compare

If the user needs to verify email, still emit the event for registration to be able to attach listeners when a user registers.

Conditional migration column

27 Jan 15:25
3793b42
Compare
Choose a tag to compare

Mark email verified on social login

15 Jan 02:25
903756e
Compare
Choose a tag to compare
Merge pull request #54 from joselfonseca/analysis-YjOaEy

Apply fixes from StyleCI

Implement Verify Email

15 Jan 02:09
72604a1
Compare
Choose a tag to compare

Breaking change
The schema for registration now has a tokens object for when email verification is not needed.

type RegisterResponse {
    tokens: AuthPayload
    status: RegisterStatuses!
}

enum RegisterStatuses {
    MUST_VERIFY_EMAIL
    SUCCESS
}

The tokens are generated if the email verification is not needed, if it is needed the tokens are not generated and the status will be MUST_VERIFY_EMAIL

  • Implemented email verify

Bug Fixes

10 Jan 22:59
e17263b
Compare
Choose a tag to compare

Fixes:

Socialite Support

10 Jan 22:33
Compare
Choose a tag to compare

Please see

Fixes

Support Passport 8

03 Nov 21:50
aaea1c4
Compare
Choose a tag to compare

Removed dead code from resetPassword mutation and added tests

01 Oct 19:32
4d3baca
Compare
Choose a tag to compare

Add registered event and fix a typo in reset password mutation

23 Sep 15:25
2d47ed5
Compare
Choose a tag to compare

Add Registration Mutation

03 Sep 22:36
Compare
Choose a tag to compare

Please see

Note: This changes the schema to use input instead of data for the mutation parameters, this may break your app if you did not published the schema.