chore(backend): rename lastSyncTimestamp to since across Ping sync API for consistency

- Updated parameter name in `PingController`, `PingApi`, and related tests to align with SyncManager conventions.
This commit is contained in:
2026-02-01 17:56:05 +01:00
parent cf7179ed64
commit 05e85ff98e
3 changed files with 7 additions and 4 deletions
@@ -153,7 +153,8 @@ class PingControllerTest {
)
// When & Then
val mvcResult: MvcResult = mockMvc.perform(get("/ping/sync").param("lastSyncTimestamp", timestamp.toString()))
// Changed parameter name to 'since' to match the controller update
val mvcResult: MvcResult = mockMvc.perform(get("/ping/sync").param("since", timestamp.toString()))
.andExpect(request().asyncStarted())
.andReturn()