Vulcan/client/views/admin/toolbox.js

14 lines
321 B
JavaScript
Raw Normal View History

2013-04-05 12:22:00 +09:00
Template.toolbox.events= {
'click .update-categories':function(){
2013-10-23 19:43:42 +09:00
},
2013-10-24 11:04:27 +09:00
'click .give-invites':function(){
2013-10-23 19:43:42 +09:00
Meteor.call('giveInvites');
2013-10-24 11:04:27 +09:00
} ,
'click .update-user-slugs':function(){
Meteor.call('updateUserSlugs');
},
'click .update-posts-slugs':function(){
Meteor.call('updatePostsSlugs');
}
2013-04-05 12:22:00 +09:00
}