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

repositories_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: 1ad38bd7103ad872c45c8fb35f05ea53c64530d5 (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 RepositoriesController < ::Groups::Harbor::ApplicationController
      include ::Harbor::Repository

      private

      def container
        @group
      end
    end
  end
end