mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
13 lines
238 B
Ruby
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
|