Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15398632
D8944.id21314.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D8944.id21314.diff
View Options
diff --git a/src/applications/maniphest/storage/ManiphestTask.php b/src/applications/maniphest/storage/ManiphestTask.php
--- a/src/applications/maniphest/storage/ManiphestTask.php
+++ b/src/applications/maniphest/storage/ManiphestTask.php
@@ -7,7 +7,8 @@
PhabricatorTokenReceiverInterface,
PhabricatorFlaggableInterface,
PhrequentTrackableInterface,
- PhabricatorCustomFieldInterface {
+ PhabricatorCustomFieldInterface,
+ PhabricatorDestructableInterface {
const MARKUP_FIELD_DESCRIPTION = 'markup:desc';
@@ -282,4 +283,26 @@
return $this;
}
+
+/* -( PhabricatorDestructableInterface )----------------------------------- */
+
+
+ public function destroyObjectPermanently(
+ PhabricatorDestructionEngine $engine) {
+
+ $this->openTransaction();
+
+ // TODO: Once this implements PhabricatorTransactionInterface, this
+ // will be handled automatically and can be removed.
+ $xactions = id(new ManiphestTransaction())->loadAllWhere(
+ 'objectPHID = %s',
+ $this->getPHID());
+ foreach ($xactions as $xaction) {
+ $engine->destroyObject($xaction);
+ }
+
+ $this->delete();
+ $this->saveTransaction();
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 18, 1:00 AM (2 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7460796
Default Alt Text
D8944.id21314.diff (1 KB)
Attached To
Mode
D8944: Allow structured destruction of Maniphest tasks
Attached
Detach File
Event Timeline
Log In to Comment