Devise\Support\Config\SettingsResponseHandler::executeUpdate PHP Method

executeUpdate() public method

public executeUpdate ( $input )
    public function executeUpdate($input)
    {
        try {
            $this->SettingsManager->update($input['settings']);
        } catch (DeviseValidationException $e) {
            return $this->Redirect->route('dvs-settings-index')->withInput()->withErrors($e->getErrors())->with('message', $e->getMessage());
        }
        return $this->Redirect->route('dvs-settings-index');
    }
SettingsResponseHandler