summaryrefslogtreecommitdiff
path: root/server/methods.js
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-07-07 18:00:25 +0300
committerYuval Adam <yuval@y3xz.com>2015-07-07 18:00:25 +0300
commitc079c5914a1980d656ef96eca5fa775aebaab648 (patch)
tree4e9905ae21403ed3b9ba75a8be6bf08c81e80741 /server/methods.js
parent288893999c04a2cbe9adbc61ae7d753913bdb07e (diff)
Add printing stubs
Diffstat (limited to 'server/methods.js')
-rw-r--r--server/methods.js6
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);
+ }
}
});