notebook/app/models/stream/share_comment.rb

11 lines
183 B
Ruby

class ShareComment < ApplicationRecord
acts_as_paranoid
belongs_to :user, optional: true
belongs_to :content_page_share
def from_op?(share)
user == share.user
end
end