A new controller that can be used in combination with SendGrid.

This commit is contained in:
James Cole
2015-07-22 17:50:02 +02:00
parent 8101dc37b1
commit 68e073fbff
3 changed files with 24 additions and 0 deletions

View 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);
}
}