Merge branch 'add-noop-users-me-devices' into 'master'

Add no-op /users/@me/devices, used by Android

See merge request litecord/litecord!66
This commit is contained in:
Luna 2020-06-10 17:55:58 +00:00
commit 3082d2dad1
1 changed files with 6 additions and 0 deletions

View File

@ -320,6 +320,12 @@ async def get_harvest():
return "", 204
@bp.route("/@me/devices", methods=["POST"])
async def post_devices():
"""Dummy route"""
return "", 204
@bp.route("/@me/activities/statistics/applications", methods=["GET"])
async def get_stats_applications():
"""Dummy route for info on gameplay time and such"""