mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
6 lines
No EOL
207 B
JavaScript
6 lines
No EOL
207 B
JavaScript
Template.unsubscribe.helpers({
|
|
unsubscribed : function(){
|
|
var hash = Session.get('userEmailHash');
|
|
Meteor.call('unsubscribeUser', hash) ? 'You have been unsubscribed.' : 'User not found.' ;
|
|
}
|
|
}); |