mirror of
https://gh.wpcy.net/https://github.com/Wouter0100/freescout-postal.git
synced 2026-04-23 06:42:13 +08:00
6 lines
250 B
PHP
6 lines
250 B
PHP
<?php
|
|
|
|
Route::group(['prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\Postal\Http\Controllers'], function()
|
|
{
|
|
Route::post('/postal/endpoint/{mailbox_id}', ['uses' => 'PostalController@endpoint'])->name('postal.endpoint.http');
|
|
});
|