Send event date as timestamp

This commit is contained in:
Skylar Ittner 2020-09-03 19:46:59 -06:00
parent aeee08270d
commit 255d77ec7a

View File

@ -108,7 +108,7 @@ class Event implements JsonSerializable {
"id" => $this->getID(),
"machineid" => $this->getMachineID(),
"name" => $this->getName(),
"date" => $this->getDate(),
"date" => strtotime($this->getDate()),
"techuid" => $this->getTechUID(),
"publicnotes" => $this->getPublicNotes(),
"privatenotes" => $this->getPrivateNotes()