diaspora/lib/stream/participate.rb
2012-02-01 16:05:16 -08:00

15 lines
No EOL
354 B
Ruby

class Stream::Participate < Stream::Base
def link(opts={})
Rails.application.routes.url_helpers.participate_stream_path(opts)
end
def title
I18n.translate("streams.participate.title")
end
# @return [ActiveRecord::Association<Post>] AR association of posts
def posts
@posts ||= EvilQuery::Participation.new(user).posts
end
end