From 0353d529e0d54a4a2d836afeb3224f3d53a649e4 Mon Sep 17 00:00:00 2001
From: Star Rauchenberger <fefferburbia@gmail.com>
Date: Tue, 4 Mar 2025 12:47:12 -0500
Subject: Disable pending comment emails

---
 app/controllers/comments_controller.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'app')

diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb
index b305d0a..9413339 100644
--- a/app/controllers/comments_controller.rb
+++ b/app/controllers/comments_controller.rb
@@ -56,7 +56,8 @@ class CommentsController < ApplicationController
             CommentMailer.with(comment: @comment).reply_comment_email.deliver_later
           end
         else
-          CommentMailer.with(comment: @comment).new_pending_comment_email.deliver_later
+          # CommentMailer.with(comment: @comment).new_pending_comment_email.deliver_later
+          # I'm disabling pending comment emails, at least for now, because I am getting too many.
         end
       else
         flash.alert = "Error posting comment."
-- 
cgit 1.4.1