function BlockContentTest::setUpAuthorization
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Functional/BlockContentTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTest::setUpAuthorization()
- 8.9.x core/modules/jsonapi/tests/src/Functional/BlockContentTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTest::setUpAuthorization()
- 10 core/modules/jsonapi/tests/src/Functional/BlockContentTest.php \Drupal\Tests\jsonapi\Functional\BlockContentTest::setUpAuthorization()
Overrides ResourceTestBase::setUpAuthorization
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ BlockContentTest.php, line 69
Class
- BlockContentTest
- JSON:API integration test for the "BlockContent" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function setUpAuthorization($method) : void {
switch ($method) {
case 'GET':
$this->grantPermissionsToTestedRole([
'access block library',
]);
break;
case 'PATCH':
$this->grantPermissionsToTestedRole([
'administer block types',
'administer block content',
]);
break;
case 'POST':
$this->grantPermissionsToTestedRole([
'create basic block content',
]);
break;
case 'DELETE':
$this->grantPermissionsToTestedRole([
'delete any basic block content',
]);
break;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.