mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-24 06:20:56 +01:00
Don't require missing fields be present in order to subscribe to an object
Summary: Fixes T8719. It's fine to subscribe to objects that don't have all their required fields filled in. Test Plan: Subscribed/unsubscribed from an object. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8719 Differential Revision: https://secure.phabricator.com/D13484
This commit is contained in:
parent
9eda21451a
commit
594690ade9
1 changed files with 1 additions and 0 deletions
|
@ -95,6 +95,7 @@ final class PhabricatorSubscriptionsEditController
|
|||
$editor = id($object->getApplicationTransactionEditor())
|
||||
->setActor($user)
|
||||
->setContinueOnNoEffect(true)
|
||||
->setContinueOnMissingFields(true)
|
||||
->setContentSourceFromRequest($request);
|
||||
|
||||
$editor->applyTransactions(
|
||||
|
|
Loading…
Reference in a new issue