From 3999ab4ae1aeac353dc9dce30fcb87bd4f72e263 Mon Sep 17 00:00:00 2001 From: Thomas Darde Date: Thu, 2 May 2019 09:39:11 +0200 Subject: [PATCH 1/2] Update downloading section Added a precision on callbacks and file availability --- guides/source/active_storage_overview.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index 615f576797..cf12b6313b 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -415,6 +415,8 @@ message.video.open do |file| end ``` +It's important to know that the file are not yet available in the `after_create` commit but in the `after_create_commit` only + Transforming Images ------------------- From 5d0ae7efb921c6abf742e96f7b65a6c282b0c952 Mon Sep 17 00:00:00 2001 From: Thomas Darde Date: Mon, 29 Jul 2019 16:56:43 +0200 Subject: [PATCH 2/2] Update a typo in the guide's requested updated --- guides/source/active_storage_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index cf12b6313b..06fe271b75 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -415,7 +415,7 @@ message.video.open do |file| end ``` -It's important to know that the file are not yet available in the `after_create` commit but in the `after_create_commit` only +It's important to know that the file are not yet available in the `after_create` callback but in the `after_create_commit` only Transforming Images -------------------