Skip to content
Snippets Groups Projects
Commit 20ee1280 authored by catch's avatar catch
Browse files

Issue #3152848 by alexpott: Clean up bc_entity_resource_permissions code - it...

Issue #3152848 by alexpott: Clean up bc_entity_resource_permissions code - it does not exist anymore
parent 308db361
No related branches found
No related tags found
No related merge requests found
......@@ -74,10 +74,6 @@ protected function getNormalizedPostEntity() {
* {@inheritdoc}
*/
protected function getExpectedUnauthorizedAccessMessage($method) {
if ($this->config('rest.settings')->get('bc_entity_resource_permissions')) {
return parent::getExpectedUnauthorizedAccessMessage($method);
}
switch ($method) {
case 'GET':
return "The 'view config_test' permission is required.";
......
......@@ -59,18 +59,6 @@ protected function setUpAuthorization($method) {
}
}
/**
* {@inheritdoc}
*/
protected function grantPermissionsToTestedRole(array $permissions) {
// testPatch() and testDelete() test the 'bc_entity_resource_permissions' BC
// layer; also call makeCurrentUserFileOwner() then.
if ($permissions === ['restful patch entity:file'] || $permissions === ['restful delete entity:file']) {
$this->makeCurrentUserFileOwner();
}
parent::grantPermissionsToTestedRole($permissions);
}
/**
* Makes the current user the file owner.
*/
......
......@@ -89,10 +89,6 @@ protected function getNormalizedPostEntity() {
* {@inheritdoc}
*/
protected function getExpectedUnauthorizedAccessMessage($method) {
if ($this->config('rest.settings')->get('bc_entity_resource_permissions')) {
return parent::getExpectedUnauthorizedAccessMessage($method);
}
switch ($method) {
case 'GET':
return "The 'access shortcuts' permission is required.";
......
......@@ -136,10 +136,6 @@ protected function getNormalizedPostEntity() {
* {@inheritdoc}
*/
protected function getExpectedUnauthorizedAccessMessage($method) {
if ($this->config('rest.settings')->get('bc_entity_resource_permissions')) {
return parent::getExpectedUnauthorizedAccessMessage($method);
}
return "The 'administer entity_test content' permission is required.";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment