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

16 lines
297 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Projects
module Packages
class PackagesController < Projects::ApplicationController
include PackagesAccess
2021-01-03 14:25:43 +05:30
feature_category :package_registry
2020-10-24 23:57:45 +05:30
def show
@package = project.packages.find(params[:id])
end
end
end
end