Skip to content

Commit

Permalink
Merge 74c9752 into 3fb8781
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisoSouza committed Nov 30, 2021
2 parents 3fb8781 + 74c9752 commit c66acbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions connect/api/v1/organization/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def get_stripe_card_data(self, request, organization_uuid):

@action(
detail=True,
methods=["POST"],
methods=["PATCH"],
url_name="billing-closing-plan",
url_path="billing/closing-plan/(?P<organization_uuid>[^/.]+)",
authentication_classes=[ExternalAuthentication],
Expand Down Expand Up @@ -273,7 +273,7 @@ def closing_plan(self, request, organization_uuid): # pragma: no cover

@action(
detail=True,
methods=["POST"],
methods=["PATCH"],
url_name="billing-reactivate-plan",
url_path="billing/reactivate-plan/(?P<organization_uuid>[^/.]+)",
authentication_classes=[ExternalAuthentication],
Expand Down Expand Up @@ -305,7 +305,7 @@ def reactivate_plan(self, request, organization_uuid): # pragma: no cover

@action(
detail=True,
methods=["POST"],
methods=["PATCH"],
url_name="billing-change-plan",
url_path="billing/change-plan/(?P<organization_uuid>[^/.]+)",
authentication_classes=[ExternalAuthentication],
Expand Down

0 comments on commit c66acbb

Please sign in to comment.