diff options
author | MetaJuanito Fatas <juanitofatas@gmail.com> | 2020-03-11 21:54:02 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-11 09:54:02 -0300 |
commit | 823e38ff6880cbde2eb77eb804cbdb7d9e1ccca4 (patch) | |
tree | b55e265af2d3945e2fa492e829c0964fb818d466 | |
parent | 4d4af94e22e9c8f14ea5e6fc5339f89430f34c61 (diff) | |
download | gitignore-823e38ff6880cbde2eb77eb804cbdb7d9e1ccca4.tar.gz gitignore-823e38ff6880cbde2eb77eb804cbdb7d9e1ccca4.zip |
Add /public/uploads for file upload gem Shrine (#3333)
When using a file upload gem called Shrine, its file system mode put images under `public/uploads`.
https://github.com/shrinerb/shrine/blob/053bcf297e092e9695731fb9b67a86780e898203/doc/storage/file_system.md
-rw-r--r-- | Rails.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Rails.gitignore b/Rails.gitignore index 8969914f..ae9df644 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -66,3 +66,4 @@ yarn-debug.log* # Ignore uploaded files in development /storage/* !/storage/.keep +/public/uploads |