Vulcan/client/views/admin/toolbox.js

11 lines
235 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');
2013-10-23 19:43:42 +09:00
}
2013-04-05 12:22:00 +09:00
}