Files
oldvine_cms/routes/payments.js
Talal Sharabi a3308a26e2 Initial commit: CMS backend for Old Vine Hotel
- Complete Express.js API server
- MongoDB integration with Mongoose
- Admin authentication and authorization
- Room management (CRUD operations)
- Booking management system
- Guest management
- Payment processing (Stripe integration)
- Content management (pages, blog, gallery)
- Media upload and management
- Integration services (Booking.com, Expedia, Opera PMS, Trip.com)
- Email notifications
- Comprehensive logging and error handling
2026-01-06 12:21:56 +04:00

12 lines
257 B
JavaScript

const express = require('express');
const router = express.Router();
// Minimal payments router stub to satisfy app.use
router.get('/health', (req, res) => {
res.json({ success: true, service: 'payments', status: 'ok' });
});
module.exports = router;