From df1225e58dbc669cb6ce976ec410b59ea9e8b19e Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Sat, 11 Jan 2025 16:44:21 +0000 Subject: [PATCH] Style --- app/models/notification.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/notification.rb b/app/models/notification.rb index deaa9934a..ecc60eda0 100644 --- a/app/models/notification.rb +++ b/app/models/notification.rb @@ -1,6 +1,6 @@ class Notification < ApplicationRecord belongs_to :user - belongs_to :creator, class_name: 'User' + belongs_to :creator, class_name: "User" belongs_to :resource, polymorphic: true scope :unread, -> { where(read: false) }