1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 17:56:48 +00:00

Merge pull request #3444 from shleeable/patch-3

Added storage flags to diagnostics
This commit is contained in:
daniel 2022-05-13 21:37:56 -06:00 committed by GitHub
commit d91884b6ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,6 +176,14 @@
<strong><span class="badge badge-primary">OAUTH</span> private key exists: </strong> <strong><span class="badge badge-primary">OAUTH</span> private key exists: </strong>
<span>{{ file_exists(storage_path('oauth-private.key')) ? '✅' : '❌' }}</span> <span>{{ file_exists(storage_path('oauth-private.key')) ? '✅' : '❌' }}</span>
</li> </li>
<li>
<strong><span class="badge badge-primary">Storage</span> Cloud Storage: </strong>
<span>{{ config_cache('pixelfed.cloud_storage') ? '✅' : '❌' }}</span>
</li>
<li>
<strong><span class="badge badge-primary">Storage</span> Filesystems default (local/s3/spaces): </strong>
<span>{{ config_cache('filesystems.default')}}</span>
</li>
</ul> </ul>
</div> </div>
<div class="pb-3 border-bottom"> <div class="pb-3 border-bottom">