Remove external subscription system

This commit is contained in:
2026-07-18 14:03:03 +02:00
parent bcd15d8569
commit a04d58c60f
12 changed files with 31 additions and 351 deletions
-1
View File
@@ -18,4 +18,3 @@ use Illuminate\Support\Facades\Schedule;
Schedule::command('app:auto-stats')->hourly();
Schedule::command('app:reset-user-downloads')->daily();
Schedule::command('app:generate-sitemap')->daily();
Schedule::command('app:sync-subscription-keys')->daily();
-1
View File
@@ -25,7 +25,6 @@ Route::middleware('auth')->group(function () {
Route::get('/user/comments', [ProfileController::class, 'comments'])->name('profile.comments');
Route::get('/user/likes', [ProfileController::class, 'likes'])->name('profile.likes');
Route::get('/user/watched', [ProfileController::class, 'watched'])->name('user.watched');
Route::get('/user/subscription', [ProfileController::class, 'subscription'])->name('profile.subscription');
// Notifications
Route::get('/user/notifications', [NotificationController::class, 'index'])->name('profile.notifications');