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

artifacts_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: b7570b44a2c636b989c2774b76000ab77b826bb4 (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 ArtifactsController < ::Groups::Harbor::ApplicationController
      include ::Harbor::Artifact

      private

      def container
        @group
      end
    end
  end
end