gitlab-org--gitlab-foss/lib/gitlab/ci/reports/security/link.rb

26 lines
424 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Reports
module Security
class Link
attr_accessor :name, :url
def initialize(name: nil, url: nil)
@name = name
@url = url
end
def to_hash
{
name: name,
url: url
}.compact
end
end
end
end
end
end