Neuaufbau des Repositories
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
2026-04-13 13:18:15 +02:00
parent 79bea8cf56
commit 018c7662a3
2 changed files with 53 additions and 14 deletions
@@ -22,18 +22,4 @@ class TrackingController extends Controller
return response()->json(['success' => true]);
}
public function trackSocial(Request $request)
{
$validated = $request->validate([
'platform' => 'required|in:twitch,instagram,kick',
]);
BonusStat::create([
'type' => 'social_' . $validated['platform'],
'ip_address' => $request->ip(),
]);
return response()->json(['success' => true]);
}
}