mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
9 lines
163 B
Ruby
9 lines
163 B
Ruby
class ShareComment < ApplicationRecord
|
|
belongs_to :user, optional: true
|
|
belongs_to :content_page_share
|
|
|
|
def from_op?(share)
|
|
user == share.user
|
|
end
|
|
end
|