6 lines
106 B
Ruby
6 lines
106 B
Ruby
module HasPublicAuthor
|
|
def public_author
|
|
self.author.public_activity? ? self.author : nil
|
|
end
|
|
end
|