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