Strange Algorithms
Strange Algorithms

Reputation: 111

Prefilled realm object server database

Is it possible to keep initial version(prefilled) of realm database to Realm Object Server which will be synchorized once user authorized first time?

Then users will be able to read/modify their copies. It is not multiediting - every user has it's own database, just prefilled from a server.

Upvotes: 0

Views: 68

Answers (1)

Christian Melchior
Christian Melchior

Reputation: 20126

Yes, you can. You can setup a Realm function that monitors either when the user is created or when they access the Realm for the first time, and then let the server fill the Realm.

Upvotes: 1

Related Questions