debian-mirror-gitlab/app/controllers/projects/packages/infrastructure_registry_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
336 B
Ruby
Raw Normal View History

2021-04-29 21:17:54 +05:30
# frozen_string_literal: true
module Projects
module Packages
class InfrastructureRegistryController < Projects::ApplicationController
2021-10-27 15:23:28 +05:30
include PackagesAccess
2021-04-29 21:17:54 +05:30
feature_category :infrastructure_as_code
2022-07-16 23:28:13 +05:30
urgency :low
2021-09-04 01:27:46 +05:30
def show
@package = project.packages.find(params[:id])
end
2021-04-29 21:17:54 +05:30
end
end
end