gitlab-org--gitlab-foss/app/controllers/projects/harbor/artifacts_controller.rb

16 lines
251 B
Ruby

# frozen_string_literal: true
module Projects
module Harbor
class ArtifactsController < ::Projects::Harbor::ApplicationController
include ::Harbor::Artifact
private
def container
@project
end
end
end
end