mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 22:46:59 +01:00
12 lines
418 B
TypeScript
12 lines
418 B
TypeScript
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;
|