You are here

public function WebhookConfig::hasResponseOk in Webhooks 8

Check if last response was ok.

Return value

bool A bool true if last response was ok, false otherwise.

Overrides WebhookConfigInterface::hasResponseOk

File

src/Entity/WebhookConfig.php, line 242

Class

WebhookConfig
Defines the Webhook entity.

Namespace

Drupal\webhooks\Entity

Code

public function hasResponseOk() {
  return $this->response_ok;
}