mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 22:35:03 +00:00
A new controller that can be used in combination with SendGrid.
This commit is contained in:
21
app/Http/Controllers/WebhookController.php
Normal file
21
app/Http/Controllers/WebhookController.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace FireflyIII\Http\Controllers;
|
||||
|
||||
use Log;
|
||||
|
||||
/**
|
||||
* Class WebhookController
|
||||
*
|
||||
* @package FireflyIII\Http\Controllers
|
||||
*/
|
||||
class WebhookController extends Controller
|
||||
{
|
||||
public function sendgrid()
|
||||
{
|
||||
var_dump($_POST);
|
||||
Log::debug($_POST);
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user