README.md in s3_relay-0.0.3 vs README.md in s3_relay-0.1.0
- old
+ new
@@ -137,9 +137,17 @@
```erb
<%= s3_relay_field @product, :icon_upload %>
<%= s3_relay_field @product, :photo_uploads, multiple: true %>
```
+* By default the content-disposition on the files stored in the uploads bucket
+will be set to inline. You can optionally set it to attachment by passing that
+option like so:
+
+```erb
+<%= s3_relay_field @artist, :mp3_uploads, multiple: true, disposition: "attachment" %>
+```
+
### Process uploads asynchronously
Use your background job processor of choice to process uploads pending
ingestion (and image processing) by your app.