Editrolegrid.php 542 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\User\Controller\Adminhtml\User\Role;
  8. use Magento\Framework\Controller\ResultFactory;
  9. class Editrolegrid extends \Magento\User\Controller\Adminhtml\User\Role
  10. {
  11. /**
  12. * Action for ajax request from assigned users grid
  13. *
  14. * @return \Magento\Framework\Controller\ResultInterface
  15. */
  16. public function execute()
  17. {
  18. return $this->resultFactory->create(ResultFactory::TYPE_PAGE);
  19. }
  20. }