content_moderation_notifications-8.x-3.2/src/ContentModerationNotificationsAccessController.php
src/ContentModerationNotificationsAccessController.php
<?php
namespace Drupal\content_moderation_notifications;
use Drupal\Core\Entity\EntityAccessControlHandler;
/**
* Defines an access controller for the content_moderation_notification entity.
*
* We set this class to be the access controller in
* ContentModerationNotification's entity annotation.
*
* @see \Drupal\content_moderation_notifications\Entity\ContentModerationNotification
*
* @ingroup content_moderation_notifications
*/
class ContentModerationNotificationsAccessController extends EntityAccessControlHandler {
// No special access handling. Defer to the entity system which will only
// allow admin access by default.
}
