- Removed TradingGraph component from frontend/src/components/trading. - Updated home page to import Services component and TradingGraph from new path. - Modified PortfolioPage to return null instead of PortfolioGrid. - Added initial migrations for account, advertisement, commerce, configuration, downloader, gopay, stripe, trading212, and zasilkovna apps in the backend. - Created Services component with subcomponents for Kinematografie, Drone Service, and Website Service. - Implemented TradingGraph component with dynamic data generation and canvas rendering. - Updated DonationShop component to display donation tiers with icons and descriptions.
6 lines
157 B
Python
6 lines
157 B
Python
from django.urls import path
|
|
from .views import StripeWebhook
|
|
|
|
urlpatterns = [
|
|
path("stripe-webhook/", StripeWebhook.as_view(), name="stripe-webhook"),
|
|
] |