diaspora/lib/stream/comments.rb
2016-02-09 12:42:21 +01:00

18 lines
511 B
Ruby

# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
class Stream::Comments < Stream::Base
def link(opts={})
Rails.application.routes.url_helpers.comment_stream_path(opts)
end
def title
I18n.translate("streams.comment_stream.title")
end
# @return [ActiveRecord::Association<Post>] AR association of posts
def posts
@posts ||= EvilQuery::CommentedPosts.new(user).posts
end
end