indentlabs/notebook

View on GitHub
app/models/stream/share_comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
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