Zapier_Provider::register_endpoints()

Registers the REST API endpoints for Zapier

Contents


Source

File: src/Tribe/Integrations/Event_Automator/Zapier_Provider.php

	public function register_endpoints() {
		$this->container->make( Canceled_Events::class )->register();
		$this->container->make( New_Events::class )->register();
		$this->container->make( Updated_Events::class )->register();
		$this->container->make( Create_Events::class )->register();
		$this->container->make( Update_Events::class )->register();
		$this->container->make( Find_Events::class )->register();
	}

Top ↑

Changelog

Changelog
Version Description
7.0.0 Introduced.