Devise\Pages\PageResponseHandler::requestUpdatePageVersionAbTesting PHP Method

requestUpdatePageVersionAbTesting() public method

Updates the page version's ab testing percentage amount. This percentage is the chance it will be picked during the dice roll for A|B testing
public requestUpdatePageVersionAbTesting ( [type] $input ) : [type]
$input [type]
return [type]
    public function requestUpdatePageVersionAbTesting($input)
    {
        $pageVersionId = $input['pageVersionId'];
        $amount = $input['amount'];
        $this->PageManager->updatePageVersionABTestingAmount($pageVersionId, $amount);
        return '';
    }