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

Enable hovercard controller to send ajax ready responses

Summary: Refs T1048 - Resolves the TODO

Test Plan: Used in a future diff. Used JX.log to verify JSON format and correct gibberish HTML output of input (I will never understand how browsers can be so evil and ignore `Content-Type`).

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T1048

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

+5 -3
+5 -3
src/applications/search/controller/PhabricatorSearchHovercardController.php
··· 54 54 array( 55 55 'dust' => true, 56 56 )); 57 + } else { 58 + return id(new AphrontAjaxResponse())->setContent( 59 + array( 60 + 'cards' => $cards, 61 + )); 57 62 } 58 - 59 - // TODO: Write a reasonable way to provide client-side-ready hovercard 60 - // put-into-the-browser markup (coming in the next diff) 61 63 } 62 64 63 65 }