Fix typo in isDomainDmarcRestricted method name

[MAILPOET-4302]
This commit is contained in:
Rostislav Wolny
2022-07-26 16:10:11 +02:00
committed by Veljko V
parent 4ffdd5bed5
commit fd1ac46207
3 changed files with 5 additions and 5 deletions

View File

@@ -263,7 +263,7 @@ class Settings extends APIEndpoint {
$domain = strtolower(trim($domain));
$response = ['isDmarcPolicyRetricted' => $this->senderDomainController->isDomainDmarcRetricted($domain)];
$response = ['isDmarcPolicyRetricted' => $this->senderDomainController->isDomainDmarcRestricted($domain)];
return $this->successResponse($response);
}