I want a model to represent a profile in my loopback app. But, the built-in User model found in loopback only have the following properties
- username
- password
- realm
- emailVerified
What is the best way to extend the built-in User model
in order to insert more properties like phone number
, profile picture
, and the likes
?