2019-04-09 11:48:31 -04:00
|
|
|
# frozen_string_literal: true
|
2019-04-09 09:06:36 -04:00
|
|
|
# This monkey patches the HTTParty used in https://github.com/hipchat/hipchat-rb.
|
|
|
|
module HipChat
|
|
|
|
class Client
|
2019-04-21 06:03:26 -04:00
|
|
|
connection_adapter ::Gitlab::HTTPConnectionAdapter
|
2019-04-09 09:06:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Room
|
2019-04-21 06:03:26 -04:00
|
|
|
connection_adapter ::Gitlab::HTTPConnectionAdapter
|
2019-04-09 09:06:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class User
|
2019-04-21 06:03:26 -04:00
|
|
|
connection_adapter ::Gitlab::HTTPConnectionAdapter
|
2019-04-09 09:06:36 -04:00
|
|
|
end
|
|
|
|
end
|