fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
@@ -16,7 +16,7 @@ class StaffAttendanceApiControllerTest extends TestCase
$user = User::factory()->create();
Sanctum::actingAs($user);
$response = $this->getJson('/api/attendance/staff/month');
$response = $this->getJson('/api/v1/attendance/staff/month');
$response->assertStatus(200);
}
@@ -26,8 +26,8 @@ class StaffAttendanceApiControllerTest extends TestCase
$user = User::factory()->create();
Sanctum::actingAs($user);
$response = $this->getJson('/api/attendance/staff/admins');
$response = $this->getJson('/api/v1/attendance/staff/admins');
$response->assertStatus(200);
}
}
}