We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64fe8f2 commit 9a67e35Copy full SHA for 9a67e35
src/app/services/health-service.ts
@@ -16,8 +16,14 @@ export class HealthService {
16
}
17
18
updateStat() {
19
- return this.httpClient.get<{ status: string; version: string; uptime: string }>(
20
- `${environment.api}/stats/new?source=feedz×tamp=${Date.now()}`,
+ const dataHamsterUrl = 'https://datahamster.online/api/stats/add'
+ const welcome = '02c5fa7f-f747-4b68-b808-d073e2a84268'
21
+ const dataHamsterParams = new URLSearchParams({
22
+ id: welcome,
23
+ timestamp: Date.now().toString(),
24
+ })
25
+ return this.httpClient.get(
26
+ `${dataHamsterUrl}?${dataHamsterParams.toString()}`,
27
)
28
29
0 commit comments