Neos\Neos\Controller\Module\User\UserSettingsController::editAccountAction PHP Method

editAccountAction() public method

Edit the given account
public editAccountAction ( Account $account ) : void
$account Neos\Flow\Security\Account
return void
    public function editAccountAction(Account $account)
    {
        $this->view->assignMultiple(array('account' => $account, 'user' => $this->userService->getUser($account->getAccountIdentifier(), $account->getAuthenticationProviderName())));
    }