function TermResourceTestBase::getExpectedUnauthorizedAccessMessage
Overrides EntityResourceTestBase::getExpectedUnauthorizedAccessMessage
File
- 
              core/
modules/ taxonomy/ tests/ src/ Functional/ Rest/ TermResourceTestBase.php, line 275  
Class
- TermResourceTestBase
 - Resource test base for taxonomy term entity.
 
Namespace
Drupal\Tests\taxonomy\Functional\RestCode
protected function getExpectedUnauthorizedAccessMessage($method) {
  switch ($method) {
    case 'GET':
      return "The 'access content' permission is required and the taxonomy term must be published.";
    case 'POST':
      return "The following permissions are required: 'create terms in camelids' OR 'administer taxonomy'.";
    case 'PATCH':
      return "The following permissions are required: 'edit terms in camelids' OR 'administer taxonomy'.";
    case 'DELETE':
      return "The following permissions are required: 'delete terms in camelids' OR 'administer taxonomy'.";
    default:
      return parent::getExpectedUnauthorizedAccessMessage($method);
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.