feat: Implement video version management API, enable comment tag editing, and enhance video duration display to include hours.

This commit is contained in:
Yusuf İpek
2026-02-10 14:48:15 +03:00
parent d42db4484b
commit ca65cf8f58
7 changed files with 522 additions and 175 deletions
@@ -57,6 +57,7 @@ export async function GET(request: NextRequest, { params }: RouteParams) {
const response = successResponse({
...video,
isAuthenticated: !!session?.user?.id,
currentUserId: session?.user?.id || null,
});
return withCacheControl(response, 'private, no-cache');