Vulcan/client/views/admin/toolbox.js

15 lines
345 B
JavaScript
Raw Normal View History

2014-07-05 11:24:28 +09:00
Template[getTemplate('toolbox')].events({
2013-04-05 12:22:00 +09:00
'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
} ,
2013-11-08 09:47:23 +09:00
'click .update-user-profiles':function(){
Meteor.call('updateUserProfiles');
},
'click .update-posts-slugs':function(){
Meteor.call('updatePostsSlugs');
}
2014-01-05 12:02:53 +02:00
});