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

fix perf regression when using 'owned' query

Summary:
D6335 has some unexpected side effects. This adds back the
where clause for the owned query. There may be other problems.

Test Plan:
Ran:

```
echo '{"query":"owned","guids":["myphid"]}' | arc --conduit-uri=https://myhost call-conduit differential.find
```

Reviewers: epriestley, dschleimer

Reviewed By: epriestley

CC: Korvin, aran

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

+3
+3
src/applications/differential/conduit/ConduitAPI_differential_find_Method.php
··· 69 69 $query 70 70 ->withIDs($guids); 71 71 break; 72 + case 'owned': 73 + $query->withAuthors($guids); 74 + break; 72 75 case 'phids': 73 76 $query 74 77 ->withPHIDs($guids);