mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
16 lines
436 B
JavaScript
16 lines
436 B
JavaScript
![]() |
// send emails every second when in dev environment
|
||
|
if (Meteor.absoluteUrl().indexOf('localhost') !== -1)
|
||
|
Herald.settings.queueTimer = 1000;
|
||
|
|
||
|
Meteor.startup(function () {
|
||
|
|
||
|
Herald.collection.deny({
|
||
|
update: !Users.can.editById,
|
||
|
remove: !Users.can.editById
|
||
|
});
|
||
|
|
||
|
// disable all email notifications when "emailNotifications" is set to false
|
||
|
Herald.settings.overrides.email = !Settings.get('emailNotifications', true);
|
||
|
|
||
|
});
|