From 285ca19caa37207a2a71ff61efc87e43a8030f57 Mon Sep 17 00:00:00 2001 From: "Renato \"Lond\" Cerqueira" Date: Sat, 1 Feb 2020 15:42:12 +0100 Subject: Fix error when sending moderation notification (#13014) Since the statuses helper is not loaded, the rtl helper cannot be found and the email cannot be sent. --- app/mailers/user_mailer.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'app') diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb index 8f3a4ab3a..942cee874 100644 --- a/app/mailers/user_mailer.rb +++ b/app/mailers/user_mailer.rb @@ -5,6 +5,7 @@ class UserMailer < Devise::Mailer helper :application helper :instance + helper :statuses add_template_helper RoutingHelper -- cgit