billing: add stub for country-code route

This commit is contained in:
Luna 2021-08-29 12:00:10 -03:00
parent ae26f20705
commit ead5346713
1 changed files with 5 additions and 0 deletions

View File

@ -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"}