Add time field to GetState

This commit is contained in:
Neale Pickett 2018-05-24 13:56:42 +00:00
parent 43141a38f4
commit 20a6f92173
2 changed files with 5 additions and 1 deletions

View File

@ -85,6 +85,7 @@ None
* teams: mapping from anonymized team ID to team name
* log: list of (timestamp, team number, category, points)
* notices: list of HTML broadcast notices to display to the user
* now: current server time (unix epoch)
### Example
@ -111,7 +112,8 @@ None
"notices": [
"<a href=\"https://appspot.com/dooted-bagel-8372/entry\">WOPR category</a> is now open",
"Event closes at 18:00 today, and will resume tomorrow at 08:00"
]
],
"now": 1527170088
}
}

View File

@ -1,6 +1,7 @@
#! /usr/bin/python3
from aiohttp import web
import time
async def fake_register(request):
teamId = request.query.get("teamId")
@ -44,6 +45,7 @@ async def fake_state(request):
"<a href=\"https://appspot.com/dooted-bagel-8372/entry\">WOPR category</a> is now open",
"Event closes at 18:00 today, and will resume tomorrow at 08:00"
],
"now": int(time.time()),
}
}
return web.json_response(resp)