Skip to content

Instantly share code, notes, and snippets.

@gabriel-dehan
Created January 28, 2015 15:36
Show Gist options
  • Save gabriel-dehan/9d0bef81643999c43063 to your computer and use it in GitHub Desktop.
Save gabriel-dehan/9d0bef81643999c43063 to your computer and use it in GitHub Desktop.
/* ======== SCHEMA =======
{
_id: "507f1f77bcf86cd799439011",
meta_information: {
general: {
field1: "Hello",
field2: "World",
},
...
},
...
}
*/
Col = new Mongo.Collection('myCollection');
Rise.Replays.helpers({
title: function() {
var meta = this.meta_information.general;
return meta.field1 + " " + meta.field2;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment