()
| 28 | } |
| 29 | |
| 30 | private async getLastSync() { |
| 31 | const lastSyncDate = await this.syncService.getLastSync(); |
| 32 | const res = new StringResponse(lastSyncDate == null ? null : lastSyncDate.toISOString()); |
| 33 | return Response.success(res); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | class Options { |
no test coverage detected