Proceeding to work on controller for checkout

This commit is contained in:
kbe
2025-08-28 21:05:42 +02:00
parent b9576b91f5
commit 3fa9249bc8
10 changed files with 359 additions and 69 deletions

View File

@@ -8,12 +8,16 @@ import LogoutController from "./logout_controller"
import FlashMessageController from "./flash_message_controller"
import CounterController from "./counter_controller"
import FeaturedEventController from "./featured_event_controller"
import TicketCartController from "./ticket_cart_controller"
import ShadcnTestController from "./shadcn_test_controller"
application.register("logout", LogoutController) // Allow logout using js
application.register("flash-message", FlashMessageController) // Dismiss notification after 5 secondes
application.register("counter", CounterController) // Simple counter for homepage
application.register("featured-event", FeaturedEventController) // Featured event controller for homepage
application.register("ticket-cart-controller", TicketCartController) // Handle ticket checkout
application.register("shadcn-test", ShadcnTestController) // Test controller for Shadcn
// import ShadcnTestController from "./shadcn_test_controller"
// application.register("shadcn-test", ShadcnTestController) // Test controller for Shadcn