mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
14 lines
345 B
JavaScript
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');
|
|
}
|
|
});
|