aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJeffrey Guenther <guenther.jeffrey@gmail.com>2017-11-02 16:52:42 -0700
committerJeffrey Guenther <guenther.jeffrey@gmail.com>2017-11-02 16:57:13 -0700
commit3d6d9f077fe998292f25ec9753c52cd37e22d71d (patch)
treef24b5693c282af91e97a1884144d7ae519548c37 /guides/source
parentaa6bcbbac8517d5b077f21073e9902637d7c7157 (diff)
downloadrails-3d6d9f077fe998292f25ec9753c52cd37e22d71d.tar.gz
rails-3d6d9f077fe998292f25ec9753c52cd37e22d71d.tar.bz2
rails-3d6d9f077fe998292f25ec9753c52cd37e22d71d.zip
Begins guide for ActiveStorage
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/active_storage_overview.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md
new file mode 100644
index 0000000000..922a502502
--- /dev/null
+++ b/guides/source/active_storage_overview.md
@@ -0,0 +1,21 @@
+**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonrails.org.**
+
+Active Storage
+==============
+
+This guide covers how to attach files to your ActiveRecord models.
+
+After reading this guide, you will know:
+
+* How to attach a file(s) to a model.
+* How to remove the attached file.
+* How to link to the attached file.
+* How to implement a download link.
+* How to approach implementing a custom service.
+
+--------------------------------------------------------------------------------
+
+... general discussion of how things are meant to work....
+
+Attaching Files to a Model
+--------------------------