diff --git a/src/Grid/Attribute/Property/GridCollection.php b/src/Grid/Attribute/Property/GridCollection.php index 3e24995d5..3d6fb4b34 100644 --- a/src/Grid/Attribute/Property/GridCollection.php +++ b/src/Grid/Attribute/Property/GridCollection.php @@ -18,6 +18,7 @@ use OpenApi\Attributes\Items; use OpenApi\Attributes\Property; +use Pimcore\Bundle\StudioBackendBundle\Element\Schema\Permissions; use Pimcore\Bundle\StudioBackendBundle\Grid\Schema\ColumnData; /** @@ -37,6 +38,16 @@ public function __construct() type: 'array', items: new Items(ref: ColumnData::class), ), + new Property( + property: 'isLocked', + type: 'bool' + ), + new Property( + property: 'permissions', + ref: Permissions::class, + type: 'object' + ), + ] ) );