8a134f4c65
We're moving from using terminology related to terminals when we refer to Websockets connections in Workhorse. It's more appropiate a concept like channel.
16 lines
298 B
Ruby
16 lines
298 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class UrlHelpers
|
|
WSS_PROTOCOL = "wss".freeze
|
|
def self.as_wss(url)
|
|
return unless url.present?
|
|
|
|
URI.parse(url).tap do |uri|
|
|
uri.scheme = WSS_PROTOCOL
|
|
end.to_s
|
|
rescue URI::InvalidURIError
|
|
nil
|
|
end
|
|
end
|
|
end
|