feat: renommer le point de terminaison de l'API WakaTime en 'stats' et ajuster le formatage du code

This commit is contained in:
2025-12-16 19:30:35 +01:00
parent 3fa8108ca9
commit 769767d9b7

View File

@@ -69,7 +69,7 @@ const apiEndpoints = [
{ method: 'GET', path: '/api/hobbies', description: 'Hobbies and interests' }, { method: 'GET', path: '/api/hobbies', description: 'Hobbies and interests' },
{ method: 'GET', path: '/api/uses', description: 'Tech stack and tools' }, { method: 'GET', path: '/api/uses', description: 'Tech stack and tools' },
{ method: 'GET', path: '/api/activity', description: 'Real-time activity' }, { method: 'GET', path: '/api/activity', description: 'Real-time activity' },
{ method: 'GET', path: '/api/wakatime', description: 'Coding statistics' }, { method: 'GET', path: '/api/stats', description: 'Coding statistics' },
{ method: 'GET', path: '/api/status-page', description: 'Status page' }, { method: 'GET', path: '/api/status-page', description: 'Status page' },
{ method: 'GET', path: '/api/resumes/{en|fr}', description: 'Download resume' } { method: 'GET', path: '/api/resumes/{en|fr}', description: 'Download resume' }
] ]
@@ -388,7 +388,7 @@ const apiEndpoints = [
</UCard> </UCard>
<!-- API Endpoints Section --> <!-- API Endpoints Section -->
<UCard :ui="{ body: 'p-8'}"> <UCard :ui="{ body: 'p-8' }">
<h2 class="text-3xl font-bold mb-4"> <h2 class="text-3xl font-bold mb-4">
REST API Endpoints REST API Endpoints
</h2> </h2>