guilds: add templates stub

This commit is contained in:
Cynthia Foxwell 2021-09-23 20:24:04 -06:00
parent a2a85ef621
commit 49789d66f6
1 changed files with 7 additions and 0 deletions

View File

@ -528,3 +528,10 @@ async def change_vanity_url(guild_id: int):
)
return jsonify(await app.storage.get_invite(inv_code))
@bp.route("/<int:guild_id>/templates", methods=["GET"])
async def get_guild_templates(guild_id: int):
"""This is currently just a stub"""
return jsonify([])