update imporsonation routes (#477)

Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
Chirag Chhatrala
2024-07-10 13:29:56 +05:30
committed by GitHub
parent 07a3a91645
commit b11f41d8b6
2 changed files with 7 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ Route::group(['middleware' => 'auth:api'], function () {
});
Route::prefix('open')->name('open.')->group(function () {
Route::get('/providers', [OAuthProviderController::class, 'index'])->name('index');
Route::get('/providers', [OAuthProviderController::class, 'index'])->name('providers');
Route::get('/forms', [FormController::class, 'indexAll'])->name('forms.index-all');
Route::get('/forms/{slug}', [FormController::class, 'show'])->name('forms.show');