Vulcan/client/views/admin/toolbox.js
2013-10-25 10:07:19 +09:00

14 lines
No EOL
321 B
JavaScript

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