save browser ua

This commit is contained in:
2024-09-25 14:56:42 +02:00
parent 4ee264c650
commit 538be86599
3 changed files with 23 additions and 7 deletions
+3 -1
View File
@@ -19,6 +19,7 @@ class ReserveResultPojo {
this.hostName = hostName
this.currentIp = ""
this.created_at = new Date().toLocaleString()
this.browserInfo = ""
}
to_mongo_dict() {
@@ -35,7 +36,8 @@ class ReserveResultPojo {
serial: this.serial,
created_at: this.created_at,
hostName: this.hostName,
current_ip: this.currentIp
current_ip: this.currentIp,
browserInfo: this.browserInfo
}
}