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

Conpherence - fix missing method

Summary: Fixes T7669. Broken by D12163 re-factoring and foolihardiness of test coverage. Notably / interestingly, this was broken before D12163 from not implementing policy correctly, so Conpherence has been broken for a bit with few reports.

Test Plan: had user send himself a message

Reviewers: chad, epriestley

Reviewed By: chad, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T7669

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

+2 -2
+1 -1
src/applications/conpherence/conduit/ConpherenceCreateThreadConduitAPIMethod.php
··· 37 37 $message = $request->getValue('message'); 38 38 $title = $request->getValue('title'); 39 39 40 - list($errors, $conpherence) = ConpherenceEditor::createConpherence( 40 + list($errors, $conpherence) = ConpherenceEditor::createThread( 41 41 $request->getUser(), 42 42 $participant_phids, 43 43 $title,
+1 -1
src/applications/conpherence/controller/ConpherenceNewController.php
··· 19 19 if ($request->isFormPost()) { 20 20 $participants = $request->getArr('participants'); 21 21 $message = $request->getStr('message'); 22 - list($error_codes, $conpherence) = ConpherenceEditor::createConpherence( 22 + list($error_codes, $conpherence) = ConpherenceEditor::createThread( 23 23 $user, 24 24 $participants, 25 25 $conpherence_title = null,