Remove temporary Shopify OAuth install routes
Deploy / deploy (push) Successful in 14s

Token captured, routes no longer needed.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Malek Tellissi
2026-09-11 03:21:48 +02:00
co-authored by Claude Sonnet 4.6
parent d7c956d21c
commit 80b7831a1e
2 changed files with 0 additions and 62 deletions
-5
View File
@@ -1,12 +1,7 @@
<?php
use App\Http\Controllers\ShopifyInstallController;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return redirect('/dashboard', 301);
});
// Temporär: einmalige Shopify OAuth-Installation
Route::get('/shopify/install', [ShopifyInstallController::class, 'install']);
Route::get('/shopify/callback', [ShopifyInstallController::class, 'callback']);