07-20-2020, 07:54 PM
Hi Pebah,
Have you considered solving this with your data model instead?
The universal account can be replaced by a table. You can have a "universal" table that will store the text and other data the users will see.
The user account can be managed by the cdbUsers table. You can added keys to the users table for the user's personal data, like a "bookmarks" key. After a user signs in, you can use function cdb_readUsersByEmail(pEmail) to get their user record and access their personal data from there.
- Efrain
Have you considered solving this with your data model instead?
The universal account can be replaced by a table. You can have a "universal" table that will store the text and other data the users will see.
The user account can be managed by the cdbUsers table. You can added keys to the users table for the user's personal data, like a "bookmarks" key. After a user signs in, you can use function cdb_readUsersByEmail(pEmail) to get their user record and access their personal data from there.
- Efrain