activestorage 6.0.3.2 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of activestorage might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +149 -148
- data/MIT-LICENSE +1 -1
- data/README.md +35 -3
- data/app/controllers/active_storage/base_controller.rb +11 -0
- data/app/controllers/active_storage/blobs/proxy_controller.rb +14 -0
- data/app/controllers/active_storage/{blobs_controller.rb → blobs/redirect_controller.rb} +2 -2
- data/app/controllers/active_storage/direct_uploads_controller.rb +1 -1
- data/app/controllers/active_storage/disk_controller.rb +8 -20
- data/app/controllers/active_storage/representations/proxy_controller.rb +19 -0
- data/app/controllers/active_storage/{representations_controller.rb → representations/redirect_controller.rb} +2 -2
- data/app/controllers/concerns/active_storage/file_server.rb +18 -0
- data/app/controllers/concerns/active_storage/set_blob.rb +1 -1
- data/app/controllers/concerns/active_storage/set_current.rb +2 -2
- data/app/controllers/concerns/active_storage/set_headers.rb +12 -0
- data/app/jobs/active_storage/mirror_job.rb +15 -0
- data/app/models/active_storage/attachment.rb +18 -10
- data/app/models/active_storage/blob.rb +114 -59
- data/app/models/active_storage/blob/analyzable.rb +6 -2
- data/app/models/active_storage/blob/identifiable.rb +7 -6
- data/app/models/active_storage/blob/representable.rb +34 -4
- data/app/models/active_storage/preview.rb +31 -10
- data/app/models/active_storage/record.rb +7 -0
- data/app/models/active_storage/variant.rb +28 -41
- data/app/models/active_storage/variant_record.rb +8 -0
- data/app/models/active_storage/variant_with_record.rb +54 -0
- data/app/models/active_storage/variation.rb +25 -20
- data/config/routes.rb +58 -8
- data/db/migrate/20170806125915_create_active_storage_tables.rb +14 -5
- data/db/update_migrate/20190112182829_add_service_name_to_active_storage_blobs.rb +17 -0
- data/db/update_migrate/20191206030411_create_active_storage_variant_records.rb +11 -0
- data/lib/active_storage.rb +5 -2
- data/lib/active_storage/analyzer.rb +6 -0
- data/lib/active_storage/analyzer/image_analyzer.rb +3 -0
- data/lib/active_storage/analyzer/null_analyzer.rb +4 -0
- data/lib/active_storage/analyzer/video_analyzer.rb +14 -3
- data/lib/active_storage/attached/changes/create_many.rb +1 -0
- data/lib/active_storage/attached/changes/create_one.rb +17 -4
- data/lib/active_storage/attached/many.rb +4 -3
- data/lib/active_storage/attached/model.rb +77 -16
- data/lib/active_storage/attached/one.rb +4 -3
- data/lib/active_storage/engine.rb +25 -27
- data/lib/active_storage/gem_version.rb +3 -3
- data/lib/active_storage/log_subscriber.rb +6 -0
- data/lib/active_storage/previewer.rb +3 -2
- data/lib/active_storage/previewer/mupdf_previewer.rb +3 -3
- data/lib/active_storage/previewer/poppler_pdf_previewer.rb +3 -3
- data/lib/active_storage/previewer/video_previewer.rb +2 -2
- data/lib/active_storage/service.rb +36 -7
- data/lib/active_storage/service/azure_storage_service.rb +40 -35
- data/lib/active_storage/service/configurator.rb +3 -1
- data/lib/active_storage/service/disk_service.rb +36 -31
- data/lib/active_storage/service/gcs_service.rb +18 -16
- data/lib/active_storage/service/mirror_service.rb +31 -7
- data/lib/active_storage/service/registry.rb +32 -0
- data/lib/active_storage/service/s3_service.rb +53 -23
- data/lib/active_storage/transformers/image_processing_transformer.rb +13 -7
- data/lib/active_storage/transformers/transformer.rb +0 -3
- metadata +56 -20
- data/db/update_migrate/20180723000244_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.rb +0 -9
- data/lib/active_storage/downloading.rb +0 -47
- data/lib/active_storage/transformers/mini_magick_transformer.rb +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 623160c71aa10ece4e5d6d190081b87af9820e5a588fafa76a75bf1b767aa79d
|
4
|
+
data.tar.gz: 3722a36a91ad23e172458149e6e7938f97567a572d627c724bd0139e44330623
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa33e53ae13fe387177b90a0ce3e0a6936ebaa2238c798993d3f884f01cec75d29cc926002e307613097a644eb69860347b233d881746213ecc3763ca39872bb
|
7
|
+
data.tar.gz: 383e9977c3e00b57cfbc05d92ab8ca323f9f185a4bf45f57fcb2e57b11304ab8a8ba4db50fcc11234f296b4f53ab3bbed35597a6d9741c3c4f468b05bb020079
|
data/CHANGELOG.md
CHANGED
@@ -1,240 +1,241 @@
|
|
1
|
-
## Rails 6.0
|
1
|
+
## Rails 6.1.0 (December 09, 2020) ##
|
2
2
|
|
3
|
-
*
|
3
|
+
* Change default queue name of the analysis (`:active_storage_analysis`) and
|
4
|
+
purge (`:active_storage_purge`) jobs to be the job adapter's default (`:default`).
|
4
5
|
|
6
|
+
*Rafael Mendonça França*
|
5
7
|
|
6
|
-
|
8
|
+
* Implement `strict_loading` on ActiveStorage associations.
|
7
9
|
|
8
|
-
*
|
10
|
+
*David Angulo*
|
9
11
|
|
10
|
-
|
12
|
+
* Remove deprecated support to pass `:combine_options` operations to `ActiveStorage::Transformers::ImageProcessing`.
|
11
13
|
|
12
|
-
*
|
14
|
+
*Rafael Mendonça França*
|
13
15
|
|
16
|
+
* Remove deprecated `ActiveStorage::Transformers::MiniMagickTransformer`.
|
14
17
|
|
15
|
-
|
18
|
+
*Rafael Mendonça França*
|
16
19
|
|
17
|
-
*
|
20
|
+
* Remove deprecated `config.active_storage.queue`.
|
18
21
|
|
22
|
+
*Rafael Mendonça França*
|
19
23
|
|
20
|
-
|
24
|
+
* Remove deprecated `ActiveStorage::Downloading`.
|
21
25
|
|
22
|
-
*
|
26
|
+
*Rafael Mendonça França*
|
23
27
|
|
28
|
+
* Add per-environment configuration support
|
24
29
|
|
25
|
-
|
30
|
+
*Pietro Moro*
|
26
31
|
|
27
|
-
*
|
32
|
+
* The Poppler PDF previewer renders a preview image using the original
|
33
|
+
document's crop box rather than its media box, hiding print margins. This
|
34
|
+
matches the behavior of the MuPDF previewer.
|
28
35
|
|
36
|
+
*Vincent Robert*
|
29
37
|
|
30
|
-
|
38
|
+
* Touch parent model when an attachment is purged.
|
31
39
|
|
32
|
-
*
|
40
|
+
*Víctor Pérez Rodríguez*
|
33
41
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
This fixes that generated blob keys could silently collide, leading to
|
38
|
-
data loss.
|
42
|
+
* Files can now be served by proxying them from the underlying storage service
|
43
|
+
instead of redirecting to a signed service URL. Use the
|
44
|
+
`rails_storage_proxy_path` and `_url` helpers to proxy an attached file:
|
39
45
|
|
40
|
-
|
46
|
+
```erb
|
47
|
+
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
48
|
+
```
|
41
49
|
|
50
|
+
To proxy by default, set `config.active_storage.resolve_model_to_route`:
|
42
51
|
|
43
|
-
|
52
|
+
```ruby
|
53
|
+
# Proxy attached files instead.
|
54
|
+
config.active_storage.resolve_model_to_route = :rails_storage_proxy
|
55
|
+
```
|
44
56
|
|
45
|
-
|
57
|
+
```erb
|
58
|
+
<%= image_tag @user.avatar %>
|
59
|
+
```
|
46
60
|
|
61
|
+
To redirect to a signed service URL when the default file serving strategy
|
62
|
+
is set to proxying, use the `rails_storage_redirect_path` and `_url` helpers:
|
47
63
|
|
48
|
-
|
64
|
+
```erb
|
65
|
+
<%= image_tag rails_storage_redirect_path(@user.avatar) %>
|
66
|
+
```
|
49
67
|
|
50
|
-
*
|
68
|
+
*Jonathan Fleckenstein*
|
51
69
|
|
70
|
+
* Add `config.active_storage.web_image_content_types` to allow applications
|
71
|
+
to add content types (like `image/webp`) in which variants can be processed,
|
72
|
+
instead of letting those images be converted to the fallback PNG format.
|
52
73
|
|
53
|
-
|
74
|
+
*Jeroen van Haperen*
|
54
75
|
|
55
|
-
*
|
76
|
+
* Add support for creating variants of `WebP` images out of the box.
|
56
77
|
|
57
|
-
|
78
|
+
*Dino Maric*
|
58
79
|
|
59
|
-
|
80
|
+
* Only enqueue analysis jobs for blobs with non-null analyzer classes.
|
60
81
|
|
61
|
-
*
|
82
|
+
*Gannon McGibbon*
|
62
83
|
|
63
|
-
|
84
|
+
* Previews are created on the same service as the original blob.
|
64
85
|
|
86
|
+
*Peter Zhu*
|
65
87
|
|
66
|
-
|
88
|
+
* Remove unused `disposition` and `content_type` query parameters for `DiskService`.
|
67
89
|
|
68
|
-
*
|
90
|
+
*Peter Zhu*
|
69
91
|
|
92
|
+
* Use `DiskController` for both public and private files.
|
70
93
|
|
71
|
-
|
94
|
+
`DiskController` is able to handle multiple services by adding a
|
95
|
+
`service_name` field in the generated URL in `DiskService`.
|
72
96
|
|
73
|
-
*
|
97
|
+
*Peter Zhu*
|
74
98
|
|
99
|
+
* Variants are tracked in the database to avoid existence checks in the storage service.
|
75
100
|
|
76
|
-
|
101
|
+
*George Claghorn*
|
77
102
|
|
78
|
-
*
|
79
|
-
[`activestorage`](https://www.npmjs.com/package/activestorage) to
|
80
|
-
[`@rails/activestorage`](https://www.npmjs.com/package/@rails/activestorage).
|
103
|
+
* Deprecate `service_url` methods in favour of `url`.
|
81
104
|
|
82
|
-
|
105
|
+
Deprecate `Variant#service_url` and `Preview#service_url` to instead use
|
106
|
+
`#url` method to be consistent with `Blob`.
|
83
107
|
|
84
|
-
*
|
85
|
-
queues analysis and purge jobs should use, respectively:
|
108
|
+
*Peter Zhu*
|
86
109
|
|
87
|
-
|
88
|
-
* `config.active_storage.queues.purge`
|
110
|
+
* Permanent URLs for public storage blobs.
|
89
111
|
|
90
|
-
`config.
|
91
|
-
|
112
|
+
Services can be configured in `config/storage.yml` with a new key
|
113
|
+
`public: true | false` to indicate whether a service holds public
|
114
|
+
blobs or private blobs. Public services will always return a permanent URL.
|
92
115
|
|
93
|
-
|
116
|
+
Deprecates `Blob#service_url` in favor of `Blob#url`.
|
94
117
|
|
95
|
-
*
|
118
|
+
*Peter Zhu*
|
96
119
|
|
97
|
-
|
120
|
+
* Make services aware of configuration names.
|
98
121
|
|
99
|
-
*
|
100
|
-
collisions and undefined behavior with case-insensitive filesystems and
|
101
|
-
database indices.
|
122
|
+
*Gannon McGibbon*
|
102
123
|
|
103
|
-
|
124
|
+
* The `Content-Type` header is set on image variants when they're uploaded to third-party storage services.
|
104
125
|
|
105
|
-
*
|
106
|
-
the page. It previously included one with a value of `undefined`.
|
126
|
+
*Kyle Ribordy*
|
107
127
|
|
108
|
-
|
128
|
+
* Allow storage services to be configured per attachment.
|
109
129
|
|
110
|
-
|
130
|
+
```ruby
|
131
|
+
class User < ActiveRecord::Base
|
132
|
+
has_one_attached :avatar, service: :s3
|
133
|
+
end
|
111
134
|
|
112
|
-
|
135
|
+
class Gallery < ActiveRecord::Base
|
136
|
+
has_many_attached :photos, service: :s3
|
137
|
+
end
|
138
|
+
```
|
113
139
|
|
114
|
-
*
|
140
|
+
*Dmitry Tsepelev*
|
115
141
|
|
116
|
-
|
142
|
+
* You can optionally provide a custom blob key when attaching a new file:
|
117
143
|
|
118
|
-
|
144
|
+
```ruby
|
145
|
+
user.avatar.attach key: "avatars/#{user.id}.jpg",
|
146
|
+
io: io, content_type: "image/jpeg", filename: "avatar.jpg"
|
147
|
+
```
|
119
148
|
|
120
|
-
|
149
|
+
Active Storage will store the blob's data on the configured service at the provided key.
|
121
150
|
|
122
|
-
*
|
123
|
-
relevant types of `Azure::Core::Http::HTTPError`. It previously obscured
|
124
|
-
other types of `HTTPError`, which is the azure-storage gem’s catch-all
|
125
|
-
exception class.
|
151
|
+
*George Claghorn*
|
126
152
|
|
127
|
-
|
153
|
+
* Replace `Blob.create_after_upload!` with `Blob.create_and_upload!` and deprecate the former.
|
128
154
|
|
129
|
-
|
130
|
-
|
131
|
-
|
155
|
+
`create_after_upload!` has been removed since it could lead to data
|
156
|
+
corruption by uploading to a key on the storage service which happened to
|
157
|
+
be already taken. Creating the record would then correctly raise a
|
158
|
+
database uniqueness exception but the stored object would already have
|
159
|
+
overwritten another. `create_and_upload!` swaps the order of operations
|
160
|
+
so that the key gets reserved up-front or the uniqueness error gets raised,
|
161
|
+
before the upload to a key takes place.
|
132
162
|
|
133
|
-
*
|
163
|
+
*Julik Tarkhanov*
|
134
164
|
|
135
|
-
* `
|
136
|
-
`ActiveStorage::FileNotFoundError` when the corresponding file is missing
|
137
|
-
from the storage service. Services translate service-specific missing object
|
138
|
-
exceptions (e.g. `Google::Cloud::NotFoundError` for the GCS service and
|
139
|
-
`Errno::ENOENT` for the disk service) into
|
140
|
-
`ActiveStorage::FileNotFoundError`.
|
165
|
+
* Set content disposition in direct upload using `filename` and `disposition` parameters to `ActiveStorage::Service#headers_for_direct_upload`.
|
141
166
|
|
142
|
-
*
|
167
|
+
*Peter Zhu*
|
143
168
|
|
144
|
-
*
|
145
|
-
|
169
|
+
* Allow record to be optionally passed to blob finders to make sharding
|
170
|
+
easier.
|
146
171
|
|
147
|
-
*
|
172
|
+
*Gannon McGibbon*
|
148
173
|
|
149
|
-
*
|
150
|
-
`ActiveStorage::UnrepresentableError` now inherit from `ActiveStorage::Error`
|
151
|
-
instead of `StandardError`. This permits rescuing `ActiveStorage::Error` to
|
152
|
-
handle all Active Storage errors.
|
174
|
+
* Switch from `azure-storage` gem to `azure-storage-blob` gem for Azure service.
|
153
175
|
|
154
|
-
*
|
176
|
+
*Peter Zhu*
|
155
177
|
|
156
|
-
*
|
157
|
-
is saved instead of immediately.
|
178
|
+
* Add `config.active_storage.draw_routes` to disable Active Storage routes.
|
158
179
|
|
159
|
-
|
160
|
-
be stored:
|
180
|
+
*Gannon McGibbon*
|
161
181
|
|
162
|
-
|
163
|
-
@user.avatar = params[:avatar]
|
164
|
-
```
|
182
|
+
* Image analysis is skipped if ImageMagick returns an error.
|
165
183
|
|
166
|
-
|
184
|
+
`ActiveStorage::Analyzer::ImageAnalyzer#metadata` would previously raise a
|
185
|
+
`MiniMagick::Error`, which caused persistent `ActiveStorage::AnalyzeJob`
|
186
|
+
failures. It now logs the error and returns `{}`, resulting in no metadata
|
187
|
+
being added to the offending image blob.
|
167
188
|
|
168
189
|
*George Claghorn*
|
169
190
|
|
170
|
-
*
|
171
|
-
ActiveRecord reflection mechanism.
|
191
|
+
* Method calls on singular attachments return `nil` when no file is attached.
|
172
192
|
|
173
|
-
|
174
|
-
|
175
|
-
* Variant arguments of `false` or `nil` will no longer be passed to the
|
176
|
-
processor. For example, the following will not have the monochrome
|
177
|
-
variation applied:
|
193
|
+
Previously, assuming the following User model, `user.avatar.filename` would
|
194
|
+
raise a `Module::DelegationError` if no avatar was attached:
|
178
195
|
|
179
196
|
```ruby
|
180
|
-
|
197
|
+
class User < ApplicationRecord
|
198
|
+
has_one_attached :avatar
|
199
|
+
end
|
181
200
|
```
|
182
201
|
|
183
|
-
|
202
|
+
They now return `nil`.
|
184
203
|
|
185
|
-
*
|
186
|
-
within the model's `GeneratedAssociationMethods` module to
|
187
|
-
allow overriding and composition using `super`.
|
204
|
+
*Matthew Tanous*
|
188
205
|
|
189
|
-
|
206
|
+
* The mirror service supports direct uploads.
|
190
207
|
|
191
|
-
|
192
|
-
|
208
|
+
New files are directly uploaded to the primary service. When a
|
209
|
+
directly-uploaded file is attached to a record, a background job is enqueued
|
210
|
+
to copy it to each secondary service.
|
193
211
|
|
194
|
-
|
212
|
+
Configure the queue used to process mirroring jobs by setting
|
213
|
+
`config.active_storage.queues.mirror`. The default is `:active_storage_mirror`.
|
195
214
|
|
196
|
-
*
|
197
|
-
`ActiveStorage::Attached::{One,Many}#attach` to bypass automatic content
|
198
|
-
type inference. For example:
|
215
|
+
*George Claghorn*
|
199
216
|
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
217
|
+
* The S3 service now permits uploading files larger than 5 gigabytes.
|
218
|
+
|
219
|
+
When uploading a file greater than 100 megabytes in size, the service
|
220
|
+
transparently switches to [multipart uploads](https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html)
|
221
|
+
using a part size computed from the file's total size and S3's part count limit.
|
222
|
+
|
223
|
+
No application changes are necessary to take advantage of this feature. You
|
224
|
+
can customize the default 100 MB multipart upload threshold in your S3
|
225
|
+
service's configuration:
|
226
|
+
|
227
|
+
```yaml
|
228
|
+
production:
|
229
|
+
service: s3
|
230
|
+
access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
231
|
+
secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
232
|
+
region: us-east-1
|
233
|
+
bucket: my-bucket
|
234
|
+
upload:
|
235
|
+
multipart_threshold: <%= 250.megabytes %>
|
207
236
|
```
|
208
237
|
|
209
|
-
*Ryan Davidson*
|
210
|
-
|
211
|
-
* The Google Cloud Storage service properly supports streaming downloads.
|
212
|
-
It now requires version 1.11 or newer of the google-cloud-storage gem.
|
213
|
-
|
214
238
|
*George Claghorn*
|
215
239
|
|
216
|
-
* Use the [ImageProcessing](https://github.com/janko-m/image_processing) gem
|
217
|
-
for Active Storage variants, and deprecate the MiniMagick backend.
|
218
|
-
|
219
|
-
This means that variants are now automatically oriented if the original
|
220
|
-
image was rotated. Also, in addition to the existing ImageMagick
|
221
|
-
operations, variants can now use `:resize_to_fit`, `:resize_to_fill`, and
|
222
|
-
other ImageProcessing macros. These are now recommended over raw `:resize`,
|
223
|
-
as they also sharpen the thumbnail after resizing.
|
224
|
-
|
225
|
-
The ImageProcessing gem also comes with a backend implemented on
|
226
|
-
[libvips](http://jcupitt.github.io/libvips/), an alternative to
|
227
|
-
ImageMagick which has significantly better performance than
|
228
|
-
ImageMagick in most cases, both in terms of speed and memory usage. In
|
229
|
-
Active Storage it's now possible to switch to the libvips backend by
|
230
|
-
changing `Rails.application.config.active_storage.variant_processor` to
|
231
|
-
`:vips`.
|
232
|
-
|
233
|
-
*Janko Marohnić*
|
234
|
-
|
235
|
-
* Rails 6 requires Ruby 2.5.0 or newer.
|
236
|
-
|
237
|
-
*Jeremy Daer*, *Kasper Timm Hansen*
|
238
|
-
|
239
240
|
|
240
|
-
Please check [
|
241
|
+
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activestorage/CHANGELOG.md) for previous changes.
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -16,7 +16,7 @@ A key difference to how Active Storage works compared to other attachment soluti
|
|
16
16
|
|
17
17
|
## Installation
|
18
18
|
|
19
|
-
Run `rails active_storage:install` to copy over active_storage migrations.
|
19
|
+
Run `bin/rails active_storage:install` to copy over active_storage migrations.
|
20
20
|
|
21
21
|
NOTE: If the task cannot be found, verify that `require "active_storage/engine"` is present in `config/application.rb`.
|
22
22
|
|
@@ -55,7 +55,7 @@ url_for(user.avatar)
|
|
55
55
|
|
56
56
|
class AvatarsController < ApplicationController
|
57
57
|
def update
|
58
|
-
# params[:avatar] contains
|
58
|
+
# params[:avatar] contains an ActionDispatch::Http::UploadedFile object
|
59
59
|
Current.user.avatar.attach(params.require(:avatar))
|
60
60
|
redirect_to Current.user
|
61
61
|
end
|
@@ -106,6 +106,37 @@ Variation of image attachment:
|
|
106
106
|
<%= image_tag user.avatar.variant(resize_to_limit: [100, 100]) %>
|
107
107
|
```
|
108
108
|
|
109
|
+
## File serving strategies
|
110
|
+
|
111
|
+
Active Storage supports two ways to serve files: redirecting and proxying.
|
112
|
+
|
113
|
+
### Redirecting
|
114
|
+
|
115
|
+
Active Storage generates stable application URLs for files which, when accessed, redirect to signed, short-lived service URLs. This relieves application servers of the burden of serving file data. It is the default file serving strategy.
|
116
|
+
|
117
|
+
When the application is configured to proxy files by default, use the `rails_storage_redirect_path` and `_url` route helpers to redirect instead:
|
118
|
+
|
119
|
+
```erb
|
120
|
+
<%= image_tag rails_storage_redirect_path(@user.avatar) %>
|
121
|
+
```
|
122
|
+
|
123
|
+
### Proxying
|
124
|
+
|
125
|
+
Optionally, files can be proxied instead. This means that your application servers will download file data from the storage service in response to requests. This can be useful for serving files from a CDN.
|
126
|
+
|
127
|
+
Explicitly proxy attachments using the `rails_storage_proxy_path` and `_url` route helpers:
|
128
|
+
|
129
|
+
```erb
|
130
|
+
<%= image_tag rails_storage_proxy_path(@user.avatar) %>
|
131
|
+
```
|
132
|
+
|
133
|
+
Or configure Active Storage to use proxying by default:
|
134
|
+
|
135
|
+
```ruby
|
136
|
+
# config/initializers/active_storage.rb
|
137
|
+
Rails.application.config.active_storage.resolve_model_to_route = :rails_storage_proxy
|
138
|
+
```
|
139
|
+
|
109
140
|
## Direct uploads
|
110
141
|
|
111
142
|
Active Storage, with its included JavaScript library, supports uploading directly from the client to the cloud.
|
@@ -120,7 +151,8 @@ Active Storage, with its included JavaScript library, supports uploading directl
|
|
120
151
|
```
|
121
152
|
Using the npm package:
|
122
153
|
```js
|
123
|
-
|
154
|
+
import * as ActiveStorage from "@rails/activestorage"
|
155
|
+
ActiveStorage.start()
|
124
156
|
```
|
125
157
|
2. Annotate file inputs with the direct upload URL.
|
126
158
|
|