cms_content_sync-3.0.x-dev/src/Plugin/rest/resource/EntityResource.php
src/Plugin/rest/resource/EntityResource.php
<?php
namespace Drupal\cms_content_sync\Plugin\rest\resource;
use Drupal\rest\Plugin\ResourceBase;
/**
* UNUSED. Only kept because you can't even delete REST configuration if the
* plugin it's using is no longer available: https://www.drupal.org/project/drupal/issues/3134080
*
* @RestResource(
* id = "cms_content_sync_entity_resource",
* label = @Translation("Content Sync - Legacy entity resource"),
* uri_paths = {
* "canonical" = "/rest/cms-content-sync-legacy/{api}/{entity_type}/{entity_bundle}/{entity_type_version}/{entity_uuid}",
* "create" = "/rest/cms-content-sync-legacy/{api}/{entity_type}/{entity_bundle}/{entity_type_version}"
* }
* )
*/
class EntityResource extends ResourceBase {
}
