fix: lint

This commit is contained in:
Julien Froidefond
2025-09-17 17:23:40 +02:00
parent 24421e00e7
commit 83e48d5972
4 changed files with 11 additions and 13 deletions

View File

@@ -1,11 +1,11 @@
import { NextRequest, NextResponse } from 'next/server';
import { NextResponse } from 'next/server';
import { createJiraService } from '@/services/jira';
/**
* Route POST /api/jira/sync
* Synchronise les tickets Jira avec la base locale
*/
export async function POST(request: NextRequest) {
export async function POST() {
try {
const jiraService = createJiraService();