joker1007/octogate

View on GitHub
lib/octogate/events/pull_request_review_comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "octogate/events/base"
require "octogate/gh"

module Octogate
  class Event::PullRequestReviewComment < Event::Base
    register_event :pull_request_review_comment, self

    coerce_key :comment,      GH::ReviewComment
    coerce_key :repository,   GH::Repository
    coerce_key :sender,       GH::User
  end
end