app/models/channel.rb in social_stream-base-0.14.0 vs app/models/channel.rb in social_stream-base-0.14.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