diff --git a/src/Api/Jobs/DeleteCommentJob.php b/src/Api/Jobs/DeleteCommentJob.php index 00ed5da2..9e6894da 100644 --- a/src/Api/Jobs/DeleteCommentJob.php +++ b/src/Api/Jobs/DeleteCommentJob.php @@ -33,6 +33,6 @@ class DeleteCommentJob extends AbstractJob public function requiresConfirmedEmail() { - return getConfig()->registration->needEmailForCommenting; + return false; } } diff --git a/src/Api/Jobs/DeletePostJob.php b/src/Api/Jobs/DeletePostJob.php index 5f4cef37..5d1e5701 100644 --- a/src/Api/Jobs/DeletePostJob.php +++ b/src/Api/Jobs/DeletePostJob.php @@ -26,6 +26,6 @@ class DeletePostJob extends AbstractPostJob public function requiresConfirmedEmail() { - return getConfig()->registration->needEmailForCommenting; + return false; } } diff --git a/src/Api/Jobs/EditCommentJob.php b/src/Api/Jobs/EditCommentJob.php index 8315bc2d..5531bfd3 100644 --- a/src/Api/Jobs/EditCommentJob.php +++ b/src/Api/Jobs/EditCommentJob.php @@ -37,6 +37,6 @@ class EditCommentJob extends AbstractJob public function requiresConfirmedEmail() { - return getConfig()->registration->needEmailForCommenting; + return false; } }