-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: auth flow #1
Conversation
name: ' ', | ||
email: 'john.doe@example.com', | ||
description: 'john.doe@example.com', | ||
picture: 'https://avatars.wdf.sap.corp/avatar/user123', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
internal url....
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
src/lib/services/auth.service.ts
Outdated
name: `${firstName} ${lastName}`, | ||
email: mail, | ||
description: mail, | ||
picture: `https://avatars.wdf.sap.corp/avatar/${sub}`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
internal url - for now we can skip the picture. I think gardener had a solution for this using https://gravatar.com/
so maybe we can have an api to provide the picture
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I skiped the picture and regarding the ' gardener had a solution for this using https://gravatar.com/' I think it can be a good task for Rafał to work on at some point in time
Initial implemntation concerning the creation of auth flow.