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