diff options
Diffstat (limited to 'server')
| -rw-r--r-- | server/methods.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/methods.js b/server/methods.js index 2254b08..d99728a 100644 --- a/server/methods.js +++ b/server/methods.js @@ -11,5 +11,11 @@ Meteor.methods({ }, getInstagramProfilePhoto: function () { return Meteor.user().services.instagram.profile_picture; + }, + printFinalImage: function(month, year, matrix) { + if (Meteor.userId()) { + var username = Meteor.user().services.instagram.username; + console.log('Printing', username, month, year, matrix); + } } }); |
