sumoheavy/jira-ruby

View on GitHub
lib/jira/resource/comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
module JIRA
  module Resource
    class CommentFactory < JIRA::BaseFactory # :nodoc:
    end

    class Comment < JIRA::Base
      belongs_to :issue

      nested_collections true
    end
  end
end