2018-05-09 12:01:36 +05:30
|
|
|
#
|
|
|
|
# Monkey patching the https support for private urls
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab-ee/issues/4879
|
|
|
|
#
|
|
|
|
module Fog
|
|
|
|
module Storage
|
|
|
|
class GoogleXML
|
|
|
|
class File < Fog::Model
|
|
|
|
module MonkeyPatch
|
2018-11-20 20:47:30 +05:30
|
|
|
def url(expires, options = {})
|
2018-05-09 12:01:36 +05:30
|
|
|
requires :key
|
2018-11-20 20:47:30 +05:30
|
|
|
collection.get_https_url(key, expires, options)
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
prepend MonkeyPatch
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|