add support for profile

This commit is contained in:
cleverbeagle 2017-05-28 14:04:24 -05:00
parent 779e3ee978
commit 252ebf50cc
7 changed files with 268 additions and 1 deletions

View file

@ -2,7 +2,7 @@ import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
import Documents from '../Documents';
Meteor.publish('documents', function documentsView() {
Meteor.publish('documents', function documents() {
return Documents.find({ owner: this.userId });
});