@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Show file cacheability in Files application

Summary: Ref T5685. We've added a new `canCDN` flag to control whether or not files can be cached and delivered over a CDN. Show this flag in the UI.

Test Plan: Viewed several files, saw correct/expected UI values.

Reviewers: btrahan, 20after4

Reviewed By: 20after4

Subscribers: epriestley

Maniphest Tasks: T5685

Differential Revision: https://secure.phabricator.com/D10213

+3
+3
src/applications/files/controller/PhabricatorFileInfoController.php
··· 213 213 pht('%s px', new PhutilNumber($height))); 214 214 } 215 215 216 + $finfo->addProperty( 217 + pht('Cacheable'), 218 + $file->getCanCDN() ? pht('Yes') : pht('No')); 216 219 217 220 $storage_properties = new PHUIPropertyListView(); 218 221 $box->addPropertyList($storage_properties, pht('Storage'));