Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tags_controller.rb « harbor « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f49c5ac77683508c25a3facfd7bfcdc3a0a7b5b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Projects
  module Harbor
    class TagsController < ::Projects::Harbor::ApplicationController
      include ::Harbor::Tag

      private

      def container
        @project
      end
    end
  end
end