15 lines
342 B
Ruby
15 lines
342 B
Ruby
|
# This monkey patches the HTTParty used in https://github.com/hipchat/hipchat-rb.
|
||
|
module HipChat
|
||
|
class Client
|
||
|
connection_adapter ::Gitlab::ProxyHTTPConnectionAdapter
|
||
|
end
|
||
|
|
||
|
class Room
|
||
|
connection_adapter ::Gitlab::ProxyHTTPConnectionAdapter
|
||
|
end
|
||
|
|
||
|
class User
|
||
|
connection_adapter ::Gitlab::ProxyHTTPConnectionAdapter
|
||
|
end
|
||
|
end
|