@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.

Restore a Mock key to Pholio Images

Summary: Ref T11351. We only query for images by PHID or by Mock, so the only key we need for now is `<mockPHID>`.

Test Plan: Ran `bin/storage upgrade`.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T11351

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

+3 -3
+3 -3
src/applications/pholio/storage/PholioImage.php
··· 37 37 'replacesImagePHID' => 'phid?', 38 38 ), 39 39 self::CONFIG_KEY_SCHEMA => array( 40 - // TODO: There should be a key starting with "mockPHID" here at a 41 - // minimum, but it's not entirely clear what other columns we should 42 - // have as part of the key. 40 + 'key_mock' => array( 41 + 'columns' => array('mockPHID'), 42 + ), 43 43 ), 44 44 ) + parent::getConfiguration(); 45 45 }