fix: boarding
fix: error handling fix: restarting state
This commit is contained in:
@@ -43,7 +43,7 @@ Route::get('/source/github/redirect', function () {
|
||||
$github_app->save();
|
||||
return redirect()->route('source.github.show', ['github_app_uuid' => $github_app->uuid]);
|
||||
} catch (Exception $e) {
|
||||
return general_error_handler(err: $e);
|
||||
return handleError($e);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -59,7 +59,7 @@ Route::get('/source/github/install', function () {
|
||||
}
|
||||
return redirect()->route('source.github.show', ['github_app_uuid' => $github_app->uuid]);
|
||||
} catch (Exception $e) {
|
||||
return general_error_handler(err: $e);
|
||||
return handleError($e);
|
||||
}
|
||||
});
|
||||
Route::post('/source/github/events', function () {
|
||||
@@ -179,7 +179,7 @@ Route::post('/source/github/events', function () {
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
ray($e->getMessage());
|
||||
return general_error_handler(err: $e);
|
||||
return handleError($e);
|
||||
}
|
||||
});
|
||||
Route::get('/waitlist/confirm', function () {
|
||||
|
||||
Reference in New Issue
Block a user