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

16 lines
241 B
Ruby

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