How to remove @something.com in home page to show login details

0
Suppose username  is  someone@something.com.      I need to show only username n not @something.com how to show only usename
asked
1 answers
1

You could add an extra attribute to the entity you are using that holds the shorter username. You can populate this by using a microflow that takes a substring from the full username and stores just that first part. You could run this microflow in a before commit event on the entity so whenever the long name is created or changed, it is set automatically.

Hope this helps.

answered