Skip to content

Commit

Permalink
dev: massive actions for usermanagement were not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Trischi80 committed Jul 28, 2021
1 parent 03d3f86 commit ff50d8d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions application/controllers/UserManagementController.php
Expand Up @@ -861,7 +861,7 @@ public function actionRenderSelectedItems()
* @throws CException
* @throws \PHPMailer\PHPMailer\Exception
*/
public function actionBatchSendAndResetLoginData(): string
public function actionBatchSendAndResetLoginData()
{
if (!Permission::model()->hasGlobalPermission('users', 'update')) {
return $this->renderPartial(
Expand Down Expand Up @@ -911,7 +911,7 @@ public function actionBatchSendAndResetLoginData(): string
* @return string
* @throws CException
*/
public function actionBatchPermissions(): string
public function actionBatchPermissions()
{
if (!Permission::model()->hasGlobalPermission('users', 'update')) {
return $this->renderPartial(
Expand Down Expand Up @@ -955,11 +955,11 @@ public function actionBatchPermissions(): string
/**
* Mass edition apply roles
*
* @return string
* @return string|null|void
* @throws CException
* @throws CHttpException
*/
public function actionBatchAddGroup(): string
public function actionBatchAddGroup()
{
if (!Permission::model()->hasGlobalPermission('users', 'update')) {
return $this->renderPartial(
Expand Down Expand Up @@ -1013,7 +1013,7 @@ public function actionBatchAddGroup(): string
* @return string
* @throws CException
*/
public function actionBatchApplyRoles(): string
public function actionBatchApplyRoles()
{
if (!Permission::model()->hasGlobalPermission('users', 'update')) {
return $this->renderPartial(
Expand Down

0 comments on commit ff50d8d

Please sign in to comment.