- Added client_id field to StoreTenantRequest and UpdateTenantRequest for tenant management. - Updated TenantResource to include client_id in the response. - Created migration to establish clients table and link tenants to clients. - Migrated existing tenant integrations to client_integrations table. - Grouped specific tenants under a shared client (OnTicket) in a new migration. - Updated seeders to reflect new client structure and relationships. - Adjusted integration configurations to require client instead of tenant. - Added tests for client integration functionality and ensured existing tests reflect the new client structure.
23 lines
1.0 KiB
PHP
23 lines
1.0 KiB
PHP
<?php
|
|
|
|
use App\Domains\Integration\Controllers\ClientIntegrationController;
|
|
use App\Domains\Integration\Controllers\IntegrationController;
|
|
use App\Domains\Integration\Controllers\TelepagosWebhookController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'integrations'], function () {
|
|
Route::get('/', [IntegrationController::class, 'index']);
|
|
Route::post('/', [IntegrationController::class, 'store']);
|
|
Route::get('/{integration}', [IntegrationController::class, 'show']);
|
|
Route::put('/{integration}', [IntegrationController::class, 'update']);
|
|
Route::delete('/{integration}', [IntegrationController::class, 'destroy']);
|
|
});
|
|
|
|
Route::group(['prefix' => 'clients/{client}/integrations'], function () {
|
|
Route::get('/', [ClientIntegrationController::class, 'index']);
|
|
Route::get('/{integration_code}', [ClientIntegrationController::class, 'show']);
|
|
Route::put('/{integration_code}', [ClientIntegrationController::class, 'store']);
|
|
});
|
|
|
|
Route::post('webhooks/telepagos/{client}', [TelepagosWebhookController::class, 'handle']);
|