mirror of https://gitlab.com/litecord/litecord.git
add stubs for some routes
This commit is contained in:
parent
9cdb79b084
commit
eb88651424
|
|
@ -18,7 +18,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
"""
|
||||
|
||||
from quart import Blueprint, jsonify
|
||||
from pathlib import Path
|
||||
|
||||
bp = Blueprint("store", __name__)
|
||||
|
||||
|
|
|
|||
|
|
@ -484,3 +484,13 @@ async def _patch_subscription(subscription_id):
|
|||
@bp.route("/@me/billing/country-code", methods=["GET"])
|
||||
async def _get_billing_country_code():
|
||||
return {"country_code": "US"}
|
||||
|
||||
|
||||
@bp.route("/@me/billing/stripe/setup-intents", methods=["POST"])
|
||||
async def _stripe_setup_intents():
|
||||
return {"client_secret": "gbawls"}
|
||||
|
||||
|
||||
@bp.route("/@me/billing/payment-sources/validate-billing-address", methods=["POST"])
|
||||
async def _validate_billing_address():
|
||||
return {"token": "gbawls"}
|
||||
|
|
|
|||
Loading…
Reference in New Issue