This repository has been archived on 2026-06-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
master-ai/vibn-frontend/app/api/sessions/track/route.ts

12 lines
385 B
TypeScript

import { NextResponse } from 'next/server';
// This endpoint was part of the legacy Cursor extension + Firebase integration.
// Firebase has been fully removed — return 410 Gone so callers know to stop.
export async function POST() {
return NextResponse.json(
{ error: 'This endpoint is no longer active. Session tracking has been deprecated.' },
{ status: 410 },
);
}