debian-mirror-gitlab/config/initializers/fog_google_https_private_urls.rb

21 lines
427 B
Ruby
Raw Normal View History

2018-05-09 12:01:36 +05:30
#
# Monkey patching the https support for private urls
2019-12-04 20:38:33 +05:30
# See https://gitlab.com/gitlab-org/gitlab/issues/4879
2018-05-09 12:01:36 +05:30
#
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