diff --git a/server/polar/customer_portal/endpoints/subscription.py b/server/polar/customer_portal/endpoints/subscription.py index debf5d0fa0..6d9a50a3de 100644 --- a/server/polar/customer_portal/endpoints/subscription.py +++ b/server/polar/customer_portal/endpoints/subscription.py @@ -33,9 +33,9 @@ prefix="/subscriptions", tags=["subscriptions", APITag.documented, APITag.featured] ) -SubscriptionID = Annotated[UUID4, Path(description="Your subscription ID.")] +SubscriptionID = Annotated[UUID4, Path(description="Customer subscription ID.")] SubscriptionNotFound = { - "description": "Your subscription was not found.", + "description": "Customer subscription was not found.", "model": ResourceNotFound.schema(), } diff --git a/server/polar/subscription/endpoints.py b/server/polar/subscription/endpoints.py index 4f76b01fcb..b5f143891d 100644 --- a/server/polar/subscription/endpoints.py +++ b/server/polar/subscription/endpoints.py @@ -162,7 +162,7 @@ async def update( auth_subject: auth.SubscriptionsWrite, session: AsyncSession = Depends(get_db_session), ) -> Subscription: - """Update a subscription of the authenticated customer or user.""" + """Update a subscription.""" subscription = await subscription_service.user_get(session, auth_subject, id) if subscription is None: raise ResourceNotFound()