aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-07-26 17:43:32 +0900
committerGitHub <noreply@github.com>2018-07-26 17:43:32 +0900
commit8a5fe2bcded1468934f060666a69dcd7d1fac9ae (patch)
tree58d017016a6f4afa8dba21a76ad552b7dda2d3a2 /guides/source
parent91fd679710118482f718ea710710561f1cfb0b70 (diff)
parent978d486e4d3e79b062134830c908e1eebafe4f18 (diff)
downloadrails-8a5fe2bcded1468934f060666a69dcd7d1fac9ae.tar.gz
rails-8a5fe2bcded1468934f060666a69dcd7d1fac9ae.tar.bz2
rails-8a5fe2bcded1468934f060666a69dcd7d1fac9ae.zip
Merge pull request #33440 from pwim/active-storage-link
Reference Active Storage instead of third-party libraries in guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/form_helpers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index e1dbe39137..a4f7e6f601 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -651,7 +651,7 @@ def upload
end
```
-Once a file has been uploaded, there are a multitude of potential tasks, ranging from where to store the files (on disk, Amazon S3, etc) and associating them with models to resizing image files and generating thumbnails. The intricacies of this are beyond the scope of this guide, but there are several libraries designed to assist with these. Two of the better known ones are [CarrierWave](https://github.com/jnicklas/carrierwave) and [Paperclip](https://github.com/thoughtbot/paperclip).
+Once a file has been uploaded, there are a multitude of potential tasks, ranging from where to store the files (on disk, Amazon S3, etc) and associating them with models to resizing image files and generating thumbnails. [Active Storage](https://guides.rubyonrails.org/active_storage_overview.html) is designed to assist with these tasks.
NOTE: If the user has not selected a file the corresponding parameter will be an empty string.