Vulcan/client/views/admin/toolbox.js
2014-07-05 11:24:28 +09:00

14 lines
345 B
JavaScript

Template[getTemplate('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');
}
});