Zapier_Provider::add_endpoints_to_dashboard()
Adds the endpoint to the Zapier endpoint dashboard filter.
Source
File: src/Tribe/Integrations/Event_Automator/Zapier_Provider.php
public function add_endpoints_to_dashboard() {
$this->container->make( Attendees::class )->add_to_dashboard();
$this->container->make( Updated_Attendees::class )->add_to_dashboard();
$this->container->make( Checkin::class )->add_to_dashboard();
$this->container->make( Orders::class )->add_to_dashboard();
$this->container->make( Refunded_Orders::class )->add_to_dashboard();
$this->container->make( Find_Attendees::class )->add_to_dashboard();
$this->container->make( Find_Tickets::class )->add_to_dashboard();
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |