mirror of https://gitlab.com/litecord/litecord.git
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:
commit
3082d2dad1
|
|
@ -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"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue