Skip to content
This repository was archived by the owner on May 3, 2022. It is now read-only.

Commit a88006a

Browse files
authored
Merge pull request #825 from ezsystems/ezp-27050-draft_edit_user_2
Fix EZP-27050: Draft is kept after editing and publishing user
2 parents 75ad794 + 9c2f275 commit a88006a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Controller/Rest/ContentController.php

+23
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
use eZ\Publish\Core\REST\Server\Exceptions\BadRequestException;
1212
use eZ\Publish\Core\REST\Server\Values\RestContent;
1313
use eZ\Publish\Core\REST\Server\Values\Version;
14+
use eZ\Publish\Core\REST\Server\Values\CreatedVersion;
1415
use Symfony\Component\HttpFoundation\Request;
1516
use eZ\Publish\Core\REST\Common\Message;
1617
use eZ\Publish\Core\REST\Server\Controller\Content;
@@ -54,6 +55,28 @@ public function deleteContent($contentId)
5455
return new NoContent();
5556
}
5657

58+
public function createDraftFromCurrentVersion($contentId)
59+
{
60+
if (!$this->isUserContent($contentId)) {
61+
return parent::createDraftFromCurrentVersion($contentId);
62+
}
63+
64+
// Not creating the draft in this method as it will be created later by `updateVersion` and returning a dummy version
65+
$content = $this->repository->getUserService()->loadUser($contentId);
66+
$contentInfo = $this->repository->getContentService()->loadContentInfo($contentId);
67+
$contentType = $this->repository->getContentTypeService()->loadContentType($contentInfo->contentTypeId);
68+
69+
return new CreatedVersion(
70+
array(
71+
'version' => new Version(
72+
$content,
73+
$contentType,
74+
[]
75+
),
76+
)
77+
);
78+
}
79+
5780
/**
5881
* If the updated content is a user, update it using the user API, and return a Version object.
5982
*

0 commit comments

Comments
 (0)