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

Add isExplicitUpload to true on macro uploads

Summary: Fixes T3798. Macros now show up as manually uploaded

Test Plan: Upload a macro, go to file, new macro is visiable

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, aran

Maniphest Tasks: T3798

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

authored by

Guy Warner and committed by
epriestley
fc82e81f 0ae73353

+2
+2
src/applications/macro/controller/PhabricatorMacroEditController.php
··· 67 67 array( 68 68 'name' => $request->getStr('name'), 69 69 'authorPHID' => $user->getPHID(), 70 + 'isExplicitUpload' => true, 70 71 )); 71 72 } else if ($request->getStr('url')) { 72 73 try { ··· 75 76 array( 76 77 'name' => $request->getStr('name'), 77 78 'authorPHID' => $user->getPHID(), 79 + 'isExplicitUpload' => true, 78 80 )); 79 81 } catch (Exception $ex) { 80 82 $errors[] = pht('Could not fetch URL: %s', $ex->getMessage());