diff options
author | Jeffrey Guenther <guenther.jeffrey@gmail.com> | 2017-11-20 17:09:28 -0800 |
---|---|---|
committer | Jeffrey Guenther <guenther.jeffrey@gmail.com> | 2017-11-20 17:09:28 -0800 |
commit | 3718093c8326e1dad2adb50f9d5c6795f7d8ecf5 (patch) | |
tree | e4d3d4b00374660af4ad2086211960514a068764 | |
parent | c73001f4b7b5aae12a64be0c827c14739c0ba124 (diff) | |
download | rails-3718093c8326e1dad2adb50f9d5c6795f7d8ecf5.tar.gz rails-3718093c8326e1dad2adb50f9d5c6795f7d8ecf5.tar.bz2 rails-3718093c8326e1dad2adb50f9d5c6795f7d8ecf5.zip |
Updates direct download discussion
-rw-r--r-- | guides/source/active_storage_overview.md | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index 4b48d67e60..4b31281f80 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -257,7 +257,7 @@ To create a download link, use the `rails_blob_{path|url}` helper. Using this helper will allow you to set the filename and disposition. ```ruby -rails_blob_path(user.avatar, disposition: "attachment", filename: "avatar.jpg") +rails_blob_path(user.avatar, disposition: "attachment") ``` Create Variations of Attached Image @@ -334,11 +334,6 @@ directly from the client to the cloud. NOTE: Is there more to using the direct upload than this? How does one associate the result with the form submission, or does that happen automatically? -Implement Direct Download Link ------------------------------- - -TODO - Clean up Stored Files Store During System Tests ----------------------------------------------- |