mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-02 20:25:28 +00:00
Add some stuff for webhooks.
This commit is contained in:
@@ -1077,6 +1077,16 @@ Route::group(
|
||||
}
|
||||
);
|
||||
|
||||
/*
|
||||
* Webhooks management
|
||||
*/
|
||||
Route::group(
|
||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers\Webhooks', 'prefix' => 'webhooks', 'as' => 'webhooks.'],
|
||||
static function () {
|
||||
Route::get('index', ['uses' => 'IndexController@index', 'as' => 'index']);
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* For the admin routes, the user must be logged in and have the role of 'owner'.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user