yii2mod / yii2-cashier

Yii2 Cashier provides an interface to Stripe's subscription billing services.
MIT License
45 stars 23 forks source link

Payment Success Webhook #5

Closed robov closed 7 years ago

robov commented 7 years ago

How can I add custom code when the payment / subscription payment has been successfully completed ? I need to update some RBAC settings on successful completion

ihorchepurnyi commented 7 years ago

Hi, you can create your own controller for this purposes. And then override this code

'controllerMap' => [
        // Set path to your own controller with custom webhook
        'webhook' => 'yii2mod\cashier\controllers\WebhookController',
],