debian-mirror-gitlab/lib/gitlab/ci/reports/security/link.rb
2021-09-30 23:02:18 +05:30

25 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