gitlab-org--gitlab-foss/app/helpers/routing/packages_helper.rb

10 lines
197 B
Ruby

# frozen_string_literal: true
module Routing
module PackagesHelper
def package_path(package, **options)
Gitlab::UrlBuilder.build(package, only_path: true, **options)
end
end
end