You are here

function jsonapi_jsonapi_comment_filter_access in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/jsonapi.module \jsonapi_jsonapi_comment_filter_access()

Implements hook_jsonapi_ENTITY_TYPE_filter_access() for 'comment'.

File

core/modules/jsonapi/jsonapi.module, line 203
Module implementation file.

Code

function jsonapi_jsonapi_comment_filter_access(EntityTypeInterface $entity_type, AccountInterface $account) {

  // @see \Drupal\comment\CommentAccessControlHandler::checkAccess()
  // \Drupal\jsonapi\Access\TemporaryQueryGuard adds the condition for
  // (access to the commented entity), so this does not have to.
  return [
    JSONAPI_FILTER_AMONG_ALL => AccessResult::allowedIfHasPermission($account, 'administer comments'),
    JSONAPI_FILTER_AMONG_PUBLISHED => AccessResult::allowedIfHasPermission($account, 'access comments'),
  ];
}