Hello guys,
I'm new to Power Pages, I managed to make the authentication work with OIDC, I have a table where the record on that user is saved after the login.
What I would like is when the login is successful to save data to another column also.
Right now, after the login, the First name, Last name and email are saved in that table.
I had manually tried to login and when it redirects at the end, it has the JWT encoded `id_token` that contains the bellow, beside other fields.:
"given_name": "Madalina",
"family_name": "Nielsen",
"email": "mail@mail.com",
How does power pages know to save given_name to First name column and so on?
And how can I tell it to save some other fields from the JWT in some column inside that table?