mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-11 13:10:41 +00:00
13 lines
418 B
TypeScript
13 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;
|