Vulcan/client/views/admin/toolbox.js
2014-01-05 12:02:53 +02:00

14 lines
329 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');
}
});