diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-12-08 15:37:12 +0100 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-21 02:24:06 -0600 |
commit | 90f2752375145432747c559e0d44e0c86b2eef53 (patch) | |
tree | f1071b24156b9d3613047ca99b2f0e463a9e84a2 /config | |
parent | 8caf9e4ede78b434443cc2cd65aeaae4412b288f (diff) |
port tootsuite#12568 to monsterfork: Add `tootctl media remove-orphans`
Diffstat (limited to 'config')
-rw-r--r-- | config/initializers/paperclip.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/initializers/paperclip.rb b/config/initializers/paperclip.rb index 5eec70d62..096f7a11e 100644 --- a/config/initializers/paperclip.rb +++ b/config/initializers/paperclip.rb @@ -89,7 +89,7 @@ else Paperclip::Attachment.default_options.merge!( storage: :filesystem, use_timestamp: true, - path: ENV.fetch('PAPERCLIP_ROOT_PATH', ':rails_root/public/system') + '/:class/:attachment/:id_partition/:style/:filename', + path: File.join(ENV.fetch('PAPERCLIP_ROOT_PATH', File.join(':rails_root', 'public', 'system')), ':class', ':attachment', ':id_partition', ':style', ':filename'), url: ENV.fetch('PAPERCLIP_ROOT_URL', '/system') + '/:class/:attachment/:id_partition/:style/:filename', ) end |