mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
15 lines
231 B
PHP
15 lines
231 B
PHP
<?php
|
|
|
|
/**
|
|
* Description of GroupContentReview.
|
|
*/
|
|
class ContentReviewOwner extends DataExtension
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $many_many = array(
|
|
"SiteTreeContentReview" => "SiteTree",
|
|
);
|
|
}
|