Alexander Holliday
e7f052dfa0
Merge pull request #3386 from bluewave-labs/feat/remove-team-member
...
Add ability to remove team members
2026-03-06 12:37:55 -08:00
Alexander Holliday
1f56338697
Merge pull request #3390 from bluewave-labs/fix/port-env-var
...
Fix: restore PORT env var
2026-03-06 12:20:02 -08:00
Br0wnHammer
9f600f87af
Fix: Dev Dependencies in Server
2026-03-07 01:40:07 +05:30
Alex Holliday
afd6a12e7d
restore PORT env var
2026-03-06 12:07:18 -08:00
Br0wnHammer
5ebe46a81c
Feat: Websocket Implementation
2026-03-07 01:11:20 +05:30
Br0wnHammer
23247d4319
Feat: Update server validation
2026-03-07 00:59:39 +05:30
Br0wnHammer
216d9b2996
Feat: Backend - Config
2026-03-07 00:58:55 +05:30
Br0wnHammer
62f1e62a26
Feat: Backend service - Implement WebSocket check in NetworkService
2026-03-07 00:57:52 +05:30
Br0wnHammer
55bdae77f9
Feat: Backend types - Register websocket type and payload
2026-03-07 00:56:58 +05:30
gorkem-bwl
82998a7795
feat: add ability to remove team members
...
## Changes
- Add DELETE /api/v1/auth/users/:userId endpoint (admin + superadmin)
- Add deleteUserById service method with role hierarchy enforcement
- Superadmins can remove admins and regular users
- Admins can only remove regular users
- No one can remove superadmins, demo users, or themselves via this endpoint
- Add "Remove user" button with confirmation dialog on edit user page
- Allow admins to view user details and access the edit user page
- Add i18n strings for remove user button and confirmation dialog
## Access control
- superadmin -> can remove admin, user
- admin -> can remove user only
- admin cannot remove superadmin or other admins (enforced on both backend and frontend)
2026-03-06 14:18:27 -05:00
Alex Holliday
116eb80fc9
format
2026-03-06 11:07:48 -08:00
Alex Holliday
2f1a164c26
remove rtt
2026-03-06 10:46:00 -08:00
Alex Holliday
124a8c0b07
ping type globalping checks
2026-03-06 10:37:29 -08:00
Alex Holliday
35f018623f
fix prettier hook
2026-03-06 09:45:33 -08:00
Alex Holliday
9a8a175f7c
format
2026-03-06 09:37:45 -08:00
Alex Holliday
6ecb27d522
remove buildStatusResponse
2026-03-06 09:35:52 -08:00
Alex Holliday
24b9b64979
manually build response
2026-03-06 09:35:07 -08:00
Alex Holliday
990dc7875a
format
2026-03-06 09:16:22 -08:00
Alex Holliday
69e98a51ec
resolve ts errors
2026-03-06 09:14:12 -08:00
Alex Holliday
bd32854c7a
cleanup services
2026-03-05 14:46:28 -08:00
Alex Holliday
0718e63e2f
cleanup network service
2026-03-05 14:11:11 -08:00
Alex Holliday
69e07975e3
bump dependencies
2026-03-05 13:57:45 -08:00
Alex Holliday
c5c9a1a88b
fix missing await
2026-03-05 13:57:39 -08:00
Alex Holliday
f8c0b57d21
remove unused imports
2026-03-05 19:37:32 +00:00
Alex Holliday
605c969d2f
merge commit
2026-03-05 19:37:03 +00:00
Alex Holliday
ad7d4e54c3
cleanup
2026-03-05 19:34:57 +00:00
Alex Holliday
c7689cc64a
grpc
2026-03-05 19:18:29 +00:00
Alex Holliday
27c44a0fbd
config
2026-03-05 18:48:19 +00:00
Alex Holliday
190d9dd2b1
gameProvider
2026-03-05 18:45:27 +00:00
Alex Holliday
49672db563
port provider
2026-03-05 18:35:19 +00:00
Alex Holliday
80603c9a42
port provider
2026-03-05 18:30:06 +00:00
Alex Holliday
f3b156f2d0
docker provider
2026-03-05 18:19:03 +00:00
Alex Holliday
ec82efebb4
pagespeed provider, hardware provider
2026-03-05 17:54:16 +00:00
Alex Holliday
8dd846d6cd
harden http provider
2026-03-04 23:36:36 +00:00
Alex Holliday
82175f166f
pingProvider, httpProvider
2026-03-04 23:24:48 +00:00
Alexander Holliday
26db2b3a41
Merge pull request #3371 from bluewave-labs/fix/infrastructure-threshold-migration
...
Fix infrastructure threshold defaults via migration (#3327 )
2026-03-04 14:28:49 -08:00
Alexander Holliday
232a71c502
Merge pull request #3369 from bluewave-labs/fix/swagger-dynamic-server-url
...
fix: dynamically set Swagger UI server URL from request
2026-03-04 14:28:06 -08:00
gorkem-bwl
8df263fd93
fix: also migrate threshold value of 0 to 100, fix formatting
...
Addresses review feedback — thresholds set to 0 also caused issues
and should be migrated to 100 (disabled) alongside the value of 5.
2026-03-04 16:44:20 -05:00
gorkem-bwl
d2f3335b1a
fix: add type annotations to Swagger middleware parameters
...
Fixes TypeScript build error TS7006 for implicit 'any' types on req, res, next.
2026-03-04 16:32:01 -05:00
gorkem-bwl
b2e2b11ef2
fix: support IPv6 addresses in ping monitor
...
## Changes
- Fixed ping host sanitization regex that stripped everything after
the first colon, which destroyed IPv6 addresses like 2001:db8::1
- New regex properly handles bracketed IPv6 ([::1]:port), bare IPv6,
and IPv4/hostname:port formats separately
## Closes
Fixes #3053
2026-03-04 15:41:01 -05:00
gorkem-bwl
93b9abd508
fix: add migration to reset infrastructure thresholds from 5 to 100
...
## Changes
- Added migration 0004_fixInfrastructureThresholds that finds hardware
monitors with threshold values of 5 (the old incorrect default) and
updates them to 100 (effectively disabled)
- Runs automatically on server startup like other migrations
## Closes
Fixes #3327
2026-03-04 15:38:34 -05:00
gorkem-bwl
888b399a4f
fix: dynamically set Swagger UI server URL from request
...
## Changes
- Swagger UI now prepends the current server URL (protocol + host) to
the servers list, so it works correctly in remote/Docker environments
instead of always pointing to localhost.
## Closes
Fixes #3339
2026-03-04 15:29:44 -05:00
Alex Holliday
13e9185011
bump version
2026-03-04 18:24:06 +00:00
Alex Holliday
a7cf78cecc
emailService
2026-03-04 18:16:31 +00:00
Alex Holliday
0b30e23783
globalPing
2026-03-04 17:50:27 +00:00
Alex Holliday
e0608ad3ed
notificationMessageBuilder
2026-03-04 17:43:25 +00:00
Alex Holliday
d665e95f02
discord
2026-03-04 17:39:31 +00:00
Alex Holliday
afc27c804d
email
2026-03-04 17:32:50 +00:00
Alex Holliday
1deb22bf63
pagerduty
2026-03-04 17:17:52 +00:00
Alex Holliday
af8b128ac2
notificaiton providers
2026-03-03 23:27:48 +00:00