summaryrefslogtreecommitdiff
path: root/app/controllers/projects/packages/infrastructure_registry_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/packages/infrastructure_registry_controller.rb')
-rw-r--r--app/controllers/projects/packages/infrastructure_registry_controller.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/controllers/projects/packages/infrastructure_registry_controller.rb b/app/controllers/projects/packages/infrastructure_registry_controller.rb
index c02a0a56e03..2fe353b7acb 100644
--- a/app/controllers/projects/packages/infrastructure_registry_controller.rb
+++ b/app/controllers/projects/packages/infrastructure_registry_controller.rb
@@ -9,11 +9,7 @@ module Projects
def show
@package = project.packages.find(params[:id])
- @package_files = if Feature.enabled?(:packages_installable_package_files, default_enabled: :yaml)
- @package.installable_package_files.recent
- else
- @package.package_files.recent
- end
+ @package_files = @package.installable_package_files.recent
end
end
end