mirror of https://gitlab.com/litecord/litecord.git
billing: add stub for country-code route
This commit is contained in:
parent
ae26f20705
commit
ead5346713
|
|
@ -479,3 +479,8 @@ async def _patch_subscription(subscription_id):
|
|||
# j = validate(await request.get_json(), PATCH_SUBSCRIPTION)
|
||||
# returns subscription object
|
||||
pass
|
||||
|
||||
|
||||
@bp.route("/@me/billing/country-code", methods=["GET"])
|
||||
async def _get_billing_country_code():
|
||||
return {"country_code": "US"}
|
||||
|
|
|
|||
Loading…
Reference in New Issue