Skip to content

Releases: Planifica/encryption

v0.0.5

14 Sep 21:06
Compare
Choose a tag to compare

Add support for encrypting the profile of a Meteor.users document.
You can encrypt the users collection just like any other collection like so:

// define fields to be encrypted
var fields = ['profile.test'];
// init encryption on collection Messages
MessagesEncryption = new CollectionEncryption(Meteor.users, fields);