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

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

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

      private

      def container
        @group
      end
    end
  end
end