summaryrefslogtreecommitdiff
path: root/lib/github/representation/comment.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-04-19 20:04:58 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-04-24 16:17:52 -0300
commit782aab1319bdcfbe1634d4b33444e8ce5b57d394 (patch)
tree1995c7eae0095c423e0f2795ebb2389bc7992f0d /lib/github/representation/comment.rb
parentac1634fac9ef2891ef98d499fe6391d315b98b30 (diff)
downloadgitlab-ce-782aab1319bdcfbe1634d4b33444e8ce5b57d394.tar.gz
Pass a options hash to Github::Client
Diffstat (limited to 'lib/github/representation/comment.rb')
-rw-r--r--lib/github/representation/comment.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/github/representation/comment.rb b/lib/github/representation/comment.rb
index 02bcd9eaa0e..22cb98b0eff 100644
--- a/lib/github/representation/comment.rb
+++ b/lib/github/representation/comment.rb
@@ -6,7 +6,7 @@ module Github
end
def author
- @author ||= Github::Representation::User.new(raw['user'])
+ @author ||= Github::Representation::User.new(raw['user'], options)
end
def commit_id