about summary refs log tree commit diff
path: root/app/views/accounts/_header.html.haml
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-12-04 12:58:35 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-12-04 12:58:35 +0100
commit24e692b0cf1e6b2c3f1f209bebb39f0f9a97eb20 (patch)
treedb50329a328b4841b1f71d908079c99eccb6d48e /app/views/accounts/_header.html.haml
parent80c44ed9c19855d494ab26011dca0f6fbc644d0c (diff)
Set a specific S3 expiration time so that files can be cached
Diffstat (limited to 'app/views/accounts/_header.html.haml')
-rw-r--r--app/views/accounts/_header.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/accounts/_header.html.haml b/app/views/accounts/_header.html.haml
index 4c7d53678..7c483e790 100644
--- a/app/views/accounts/_header.html.haml
+++ b/app/views/accounts/_header.html.haml
@@ -1,4 +1,4 @@
-.card{ style: "background-image: url(#{@account.header.expiring_url(3600, :original)})" }
+.card{ style: "background-image: url(#{@account.header.expiring_url(s3_expiry, :original)})" }
   - if user_signed_in? && current_account.id != @account.id
     .controls
       - if current_account.following?(@account)
@@ -6,7 +6,7 @@
       - else
         = link_to t('accounts.follow'), follow_account_path(@account), data: { method: :post }, class: 'button'
 
-  .avatar= image_tag @account.avatar.expiring_url(3600, :original)
+  .avatar= image_tag @account.avatar.expiring_url(s3_expiry, :original)
   %h1.name
     = display_name(@account)
     %small= "@#{@account.username}"