Vulcan/client/views/admin/toolbox.js
2013-11-08 09:47:23 +09:00

14 lines
No EOL
327 B
JavaScript

Template.toolbox.events= {
'click .update-categories':function(){
},
'click .give-invites':function(){
Meteor.call('giveInvites');
} ,
'click .update-user-profiles':function(){
Meteor.call('updateUserProfiles');
},
'click .update-posts-slugs':function(){
Meteor.call('updatePostsSlugs');
}
}