mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-03-12 10:30:21 +01:00
10 lines
415 B
JavaScript
10 lines
415 B
JavaScript
|
import exprs from 'express';
|
||
|
const { Router } = exprs;
|
||
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
||
|
import { listInvoices, getInvoice, createInvoice } from '../../controllers/eclair/invoices.js';
|
||
|
const router = Router();
|
||
|
router.get('/', isAuthenticated, listInvoices);
|
||
|
router.get('/:paymentHash', isAuthenticated, getInvoice);
|
||
|
router.post('/', isAuthenticated, createInvoice);
|
||
|
export default router;
|