diff --git a/services/arbiter-3.0/src/index.js b/services/arbiter-3.0/src/index.js index 58119aa..5cc03d7 100644 --- a/services/arbiter-3.0/src/index.js +++ b/services/arbiter-3.0/src/index.js @@ -80,6 +80,7 @@ const csrfProtection = csrf({ cookie: false }); app.use('/auth', authRoutes); app.use('/admin', csrfProtection, adminRoutes); app.use('/webhook', webhookRoutes); +app.use('/stripe', stripeRoutes); // Checkout and portal routes (uses JSON body) // Start Application const PORT = process.env.PORT || 3500;