mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-11 13:10:41 +00:00
1e6786a850
Enable/Disable with listConfigs
15 lines
568 B
TypeScript
15 lines
568 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { decodePayments, decodePayment, signMessage, verifyMessage, listConfigs } from '../../controllers/cln/utility.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, decodePayments);
|
|
router.get('/decode/:payReq', isAuthenticated, decodePayment);
|
|
router.post('/sign', isAuthenticated, signMessage);
|
|
router.post('/verify', isAuthenticated, verifyMessage);
|
|
router.get('/listConfigs', isAuthenticated, listConfigs);
|
|
|
|
export default router;
|