mirror of https://gitlab.com/litecord/litecord.git
add stubs for affinity / Tinder Score
This commit is contained in:
parent
61463b7642
commit
14c1163cb5
|
|
@ -488,3 +488,13 @@ async def delete_account():
|
||||||
await user_disconnect(user_id)
|
await user_disconnect(user_id)
|
||||||
|
|
||||||
return "", 204
|
return "", 204
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/@me/affinities/users", methods=["GET"])
|
||||||
|
async def _get_tinder_score_affinity_users():
|
||||||
|
return {"user_affinities": []}
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/@me/affinities/guilds", methods=["GET"])
|
||||||
|
async def _get_tinder_score_affinity_guilds():
|
||||||
|
return {"guild_affinities": []}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue