mirror of https://gitlab.com/litecord/litecord.git
guilds: add templates stub
This commit is contained in:
parent
a2a85ef621
commit
49789d66f6
|
|
@ -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([])
|
||||
|
|
|
|||
Loading…
Reference in New Issue