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

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

      private

      def container
        @project
      end
    end
  end
end