module Basecamp3::Concerns::Commentable

Attributes

comments_count[RW]

Public Instance Methods

comments() click to toggle source

Returns the related comments.

@return [Array<Basecamp3::Comment>]

# File lib/basecamp3/concerns/commentable.rb, line 10
def comments
  @mapped_comments ||= Basecamp3::Comment.all(bucket.id, id)
end