Is there a way to register a route for an extension, which doesn't require authentication? Eg:
Yii::app()->urlManager->addRules(array(
array('ext_webhook_index', 'pattern' => 'extensions/webhook/'),
));
and then the resulting url, backend/index.php/webhook/index to not require authentication.
I'm interesting on receiving some data from a web hook, from a third-party application.
Yii::app()->urlManager->addRules(array(
array('ext_webhook_index', 'pattern' => 'extensions/webhook/'),
));
and then the resulting url, backend/index.php/webhook/index to not require authentication.
I'm interesting on receiving some data from a web hook, from a third-party application.