ngxs-labs / firestore-plugin

Firestore plugin for NGXS
https://ngxs-firebase-plugin.netlify.com/
MIT License
20 stars 14 forks source link

Small misspelling #77

Closed orbitcm-marcusrogers closed 1 year ago

orbitcm-marcusrogers commented 1 year ago

The ngxsFirectoreConnections object should be ngxsFirestoreConnections.

On a side note, that connections object is useful for disconnecting only certain connections. Might be nice to have a DisconnectByObject helper function so you could call DisconnectAllByObject('[Races]') or something like that. DisconnectAll is too global for many use cases.

joaqcid commented 1 year ago

hi, i merged the typo fix, will release it soon,

regarding disconnecting on a one by one basis, you can use new Disconnect(Action) to disconnect a single action

joaqcid commented 1 year ago

@orbitcm-marcusrogers did that help?