gitlab-org--gitlab-foss/lib/bitbucket/representation/url.rb
2016-11-21 16:47:26 -08:00

9 lines
162 B
Ruby

module Bitbucket
module Representation
class Url < Representation::Base
def to_s
raw.dig('links', 'self', 'href')
end
end
end
end