From e0b89fa4fc855d7c9253a1a46e8b272f3b3f5f8d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 22 Jul 2017 09:56:40 -0500 Subject: [PATCH] No need for explicit requires any more --- app/controllers/active_storage/disk_controller.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/controllers/active_storage/disk_controller.rb b/app/controllers/active_storage/disk_controller.rb index 16a295d00d..ae8cbddefa 100644 --- a/app/controllers/active_storage/disk_controller.rb +++ b/app/controllers/active_storage/disk_controller.rb @@ -1,9 +1,3 @@ -require "action_controller" -require "active_storage/blob" -require "active_storage/verified_key_with_expiration" - -require "active_support/core_ext/object/inclusion" - # This controller is a wrapper around local file downloading. It allows you to # make abstraction of the URL generation logic and to serve files with expiry # if you are using the +Disk+ service. -- GitLab