1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Move downloader require to service

This commit is contained in:
Gannon McGibbon 2019-10-11 17:54:57 -04:00
parent fa084500a2
commit bf3525c8bb
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,5 @@
# frozen_string_literal: true
require "active_storage/downloader"
# A blob is a record that contains the metadata about a file and a key for where that file resides on the service.
# Blobs can be created in two ways:
#

View file

@ -1,6 +1,7 @@
# frozen_string_literal: true
require "active_storage/log_subscriber"
require "active_storage/downloader"
require "action_dispatch"
require "action_dispatch/http/content_disposition"