mirror of https://gitlab.com/litecord/litecord.git
Add no-op /users/@me/devices, used by Android
This commit is contained in:
parent
e00888ebb5
commit
d3cf67c660
|
|
@ -320,6 +320,12 @@ async def get_harvest():
|
||||||
return "", 204
|
return "", 204
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/@me/devices", methods=["POST"])
|
||||||
|
async def post_devices():
|
||||||
|
"""Dummy route"""
|
||||||
|
return "", 204
|
||||||
|
|
||||||
|
|
||||||
@bp.route("/@me/activities/statistics/applications", methods=["GET"])
|
@bp.route("/@me/activities/statistics/applications", methods=["GET"])
|
||||||
async def get_stats_applications():
|
async def get_stats_applications():
|
||||||
"""Dummy route for info on gameplay time and such"""
|
"""Dummy route for info on gameplay time and such"""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue