diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php index 46ab9b1318..0a0d631612 100644 --- a/src/__phutil_library_map__.php +++ b/src/__phutil_library_map__.php @@ -4177,6 +4177,7 @@ phutil_register_library_map(array( array( 0 => 'ReleephDAO', 1 => 'PhabricatorPolicyInterface', + 2 => 'PhabricatorCustomFieldInterface', ), 'ReleephRequestActionController' => 'ReleephProjectController', 'ReleephRequestCommentController' => 'ReleephProjectController', diff --git a/src/applications/releeph/storage/ReleephRequest.php b/src/applications/releeph/storage/ReleephRequest.php index 06b7b76564..ed7fd7fb9b 100644 --- a/src/applications/releeph/storage/ReleephRequest.php +++ b/src/applications/releeph/storage/ReleephRequest.php @@ -1,7 +1,9 @@ assertAttached($this->customFields); + } + + public function attachCustomFields(PhabricatorCustomFieldAttachment $fields) { + $this->customFields = $fields; + return $this; + } + + }