mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 06:32:05 +03:00
11 lines
521 B
Markdown
11 lines
521 B
Markdown
|
When a user logs in using a social login provider, the backend receives some data about the user.
|
||
|
Wasp lets you access this data inside the `getUserFieldsFn` function.
|
||
|
|
||
|
For example, the User entity can include a `displayName` field which you can set based on the details received from the provider.
|
||
|
|
||
|
Wasp also lets you customize the configuration of the providers' settings using the `configFn` function.
|
||
|
|
||
|
Let's use this example to show both functions in action:
|
||
|
|
||
|
<!-- This snippet is used in google.md and github.md -->
|