Neos\Neos\Controller\Module\Administration\UsersController::showAction PHP Method

showAction() public method

Shows details for the specified user
public showAction ( User $user ) : void
$user Neos\Neos\Domain\Model\User
return void
    public function showAction(User $user)
    {
        $this->view->assignMultiple(array('currentUser' => $this->currentUser, 'user' => $user));
    }