You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 20, 2024. It is now read-only.
The Accounts package exposes 'Meteor.users' which is a MongoCollection (and documented so). However this is problematic when storage backends other than Mongo are used
a - The query API is different across Mongo/CouchDB and say Postgres (SQL).
Is it possible introduce a API for Meteor.users that is agnostic to the storage backend ?
b - Different backend might choose to store 'users info' across mutiples 'tables' (SQL) vs one 'collection' (mongo). Thus even if expose Meteor.users as is ignoring point 'a' above, as an app or package developer interacting with 'Accounts', i need to know internal storage impl details like is this 1 table or 3 tables (for instance if interested in tracking logins/logouts, becuase i need to subscribe to changes of that specific table)