scinote-web/app/models/notification.rb
2023-10-12 11:47:29 +02:00

13 lines
238 B
Ruby

# frozen_string_literal: true
class Notification < ApplicationRecord
include Noticed::Model
belongs_to :recipient, polymorphic: true
private
def can_send_to_user?(_user)
true # overridable send permission method
end
end