tapajos/highrise

View on GitHub
lib/highrise/note.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Highrise
  class Note < Base
    include Pagination

    def comments
      Comment.find(:all, :from => "/notes/#{id}/comments.xml")
    end
  end
end