From 9db675e589c06e89aa6b64b427cbaabb4ef41de4 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Tue, 22 Apr 2025 14:15:40 +0200 Subject: [PATCH] Format --- app/models/notifier.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 72c16ff3d..ab63d62ff 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -5,9 +5,9 @@ class Notifier def for(source) case source when Event - "Notifier::Events::#{source.action.classify}".safe_constantize&.new(source) + "Notifier::Events::#{source.action.classify}".safe_constantize&.new(source) when ::Mention - Notifier::Mention.new(source) + Notifier::Mention.new(source) end end end