googleAds广告账号-授权-绑定-激活流程更新 fixed

This commit is contained in:
huangguancheng 2025-02-17 14:56:38 +08:00
parent b791811abd
commit 16e84fa518

View File

@ -109,15 +109,10 @@ Route::group('/marketing', function () {
// }); // });
Route::group('/customer', function () { Route::group('/customer', function () {
Route::get('/handle_binding', [CustomerController::class, 'handleBindingNew']); //绑定接口 Route::get('/handle_binding', [CustomerController::class, 'handleBindingNew']); //绑定接口
Route::post('/bind', [CustomerController::class, 'bind']); //绑定接口
})->middleware([ })->middleware([
app\middleware\JwtLocal::class, app\middleware\JwtLocal::class,
]); ]);
Route::group('/customer', function () {
Route::get('/bind', [CustomerController::class, 'bind']); //绑定接口
})->middleware([
app\middleware\JwtLocal::class,
]);
}); });
}); });