2022-04-02 00:34:30 +00:00
|
|
|
accessing
|
|
|
|
store
|
2022-04-19 05:19:23 +00:00
|
|
|
ReStore isConnected ifFalse: [ self class storeDB ]. "Starting the ReStore singleton."
|
2022-04-28 21:17:56 +00:00
|
|
|
self messages do: [ :each | ReStore evaluateAsTransaction: [
|
|
|
|
each isInDB ifFalse: [ each store ].
|
2022-04-12 23:59:12 +00:00
|
|
|
each user isInDB ifFalse: [ each user store ]
|
2022-04-11 19:18:52 +00:00
|
|
|
]
|
|
|
|
].
|