Closed matthewvalimaki closed 7 years ago
I want to change username to email but do not know how to do it. Doing the following has no effect:
username
email
export default JWTAuthenticator.extend({ identificationAttributeName: 'email', });
Thank you for reporting, it's a bug. Should work now, you were doing it correctly.
export default JWTAuthenticator.extend({ identificationAttributeName: 'email', passwordAttributeName: 'pass' });
I want to change
username
toemail
but do not know how to do it. Doing the following has no effect: