diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2017-07-22 09:56:40 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2017-07-22 09:56:40 -0500 |
commit | e0b89fa4fc855d7c9253a1a46e8b272f3b3f5f8d (patch) | |
tree | 5d2ee0b751606f0897379ada5e4d69895ef7aaef /app/controllers | |
parent | ca0b96d89141566866ac7289d5732cd70a1d68da (diff) | |
download | rails-e0b89fa4fc855d7c9253a1a46e8b272f3b3f5f8d.tar.gz rails-e0b89fa4fc855d7c9253a1a46e8b272f3b3f5f8d.tar.bz2 rails-e0b89fa4fc855d7c9253a1a46e8b272f3b3f5f8d.zip |
No need for explicit requires any more
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/active_storage/disk_controller.rb | 6 |
1 files changed, 0 insertions, 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. |