Skip to content

Commit 812c529

Browse files
authored
Merge pull request #92 from golony6449/feature/golony/payment
누락된 수정사항 반영
2 parents 7cec4af + ece2eb8 commit 812c529

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

payment/urls.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from django.contrib import admin
22
from django.urls import include, path
33

4-
from payment.views import PortoneWebhookApi, get__generate_payment_key
5-
4+
from payment.views import PortoneWebhookApi, post__generate_payment_key, PaymentSuccessApi
65

76
urlpatterns = [
87
path("portone/webhook/", PortoneWebhookApi.as_view(), name="portone-webhook"),
9-
path("key/", get__generate_payment_key, name="get-payment-key"),
8+
path("key/", post__generate_payment_key, name="get-payment-key"),
9+
path("success/", PaymentSuccessApi.as_view(), name="payment-success"),
1010
]

0 commit comments

Comments
 (0)