chore(tests): UT for ACL actions

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2023-11-16 06:49:25 +01:00
parent 2d56422d9c
commit efc606cb91
255 changed files with 1949 additions and 1577 deletions

View File

@@ -26,7 +26,7 @@ namespace SP\Modules\Web\Controllers\UserProfile;
use Exception;
use SP\Core\Acl\ActionsInterface;
use SP\Core\Acl\AclActionsInterface;
use SP\Core\Events\Event;
use SP\Core\Events\EventMessage;
use SP\Core\Exceptions\ValidationException;
@@ -48,14 +48,14 @@ final class SaveCreateController extends UserProfileSaveBase
public function saveCreateAction(): bool
{
try {
if (!$this->acl->checkUserAccess(ActionsInterface::PROFILE_CREATE)) {
if (!$this->acl->checkUserAccess(AclActionsInterface::PROFILE_CREATE)) {
return $this->returnJsonResponse(
JsonResponse::JSON_ERROR,
__u('You don\'t have permission to do this operation')
);
}
$this->form->validateFor(ActionsInterface::PROFILE_CREATE);
$this->form->validateFor(AclActionsInterface::PROFILE_CREATE);
$profileData = $this->form->getItemData();
@@ -71,7 +71,7 @@ final class SaveCreateController extends UserProfileSaveBase
)
);
$this->addCustomFieldsForItem(ActionsInterface::PROFILE, $id, $this->request, $this->customFieldService);
$this->addCustomFieldsForItem(AclActionsInterface::PROFILE, $id, $this->request, $this->customFieldService);
return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Profile added'));
} catch (ValidationException $e) {