remove username from kill interface

This commit is contained in:
2023-09-07 18:02:23 +02:00
parent 7dcbf27533
commit 4a95c4b124
3 changed files with 6 additions and 2 deletions
+5
View File
@@ -3,3 +3,8 @@ node_modules
.env.example .env.example
npm-debug.log npm-debug.log
out out
src/generated
coverage
.github
.vscode
.stoplight
+1 -1
View File
@@ -13,7 +13,7 @@ interface PlayerConnect {
match_id: number match_id: number
} }
router.post( router.put(
'/:playerId/connect', '/:playerId/connect',
param('playerId').exists().withMessage('Missing Player ID').bail().isNumeric().withMessage('Player ID is not numeric'), param('playerId').exists().withMessage('Missing Player ID').bail().isNumeric().withMessage('Player ID is not numeric'),
validateErrors, validateErrors,
-1
View File
@@ -19,7 +19,6 @@ export interface LoadoutKillData {
interface PlayerKillData { interface PlayerKillData {
velocity: number velocity: number
name: string
loadout: LoadoutKillData loadout: LoadoutKillData
current_weapon: WeaponKillData current_weapon: WeaponKillData
state: string state: string