notebook/app/models/share_comment.rb
2020-04-25 16:31:45 -05:00

9 lines
147 B
Ruby

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