File: /var/www/html/wordpress/wp-content/plugins/bit-integrations/includes/Actions/Asana/Routes.php
<?php
if (!defined('ABSPATH')) {
exit;
}
use BitCode\FI\Actions\Asana\AsanaController;
use BitCode\FI\Core\Util\Route;
Route::post('asana_authentication', [AsanaController::class, 'authentication']);
Route::post('asana_fetch_custom_fields', [AsanaController::class, 'getCustomFields']);
Route::post('asana_fetch_all_tasks', [AsanaController::class, 'getAllTasks']);
Route::post('asana_fetch_all_Projects', [AsanaController::class, 'getAllProjects']);
Route::post('asana_fetch_all_Sections', [AsanaController::class, 'getAllSections']);