A developer asked the following question: How can we store an additional field for each one of our users since the information is now stored on Apprenda?
Answer
The approach here would vary from application to application. In this particular case, what makes sense is to have as part of the application a table that stores the additional information and links it to each user using the UserID provided as part of the UserContext API.
You can also use an extension every time a user gets added to populate that table automatically.
For more information on extension, you can refer to the following documentation link:http://docs.apprenda.com/current/extension
Comments