base/app/models/channel.rb in social_stream-0.19.0 vs base/app/models/channel.rb in social_stream-0.19.1

- old
+ new

@@ -55,6 +55,11 @@ # Does this {Channel} have the same sender and receiver? def reflexive? author_id == owner_id end + + # Is the author represented in this {Channel}? + def represented_author? + author_id != user_author_id + end end