diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2023-03-16 22:46:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 22:46:52 +0100 |
commit | 75e5a6e43738c278390c03c96d5d3e8575a2783c (patch) | |
tree | efe4516b3260387ea192c851d1665d89d27dad77 /app/views/settings | |
parent | edc7ca5920641e938cb50c0bf49ff6b0c77a80b4 (diff) |
Change user backups to use expiring URLs for download when possible (#24136)
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/exports/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/settings/exports/show.html.haml b/app/views/settings/exports/show.html.haml index c49613fdc..d7b59af27 100644 --- a/app/views/settings/exports/show.html.haml +++ b/app/views/settings/exports/show.html.haml @@ -64,6 +64,6 @@ %td= l backup.created_at - if backup.processed? %td= number_to_human_size backup.dump_file_size - %td= table_link_to 'download', t('exports.archive_takeout.download'), backup.dump.url + %td= table_link_to 'download', t('exports.archive_takeout.download'), download_backup_url(backup) - else %td{ colspan: 2 }= t('exports.archive_takeout.in_progress') |