mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
f817ae39bc
Dahboard layout fix #576 Boltz integration (#590) Merged verify token and password authentication Channel mobile view update ECL Adding inactive channels force close Flag Dust UTXOs Bug fix for forwarding history browser crash #596 Label and Lease UTXOs UI Table Fixes App settings (#604) Settings updates UTXO lease confirmation box Login and Settings page without add new node
12 lines
510 B
JavaScript
12 lines
510 B
JavaScript
const PaymentsController = require("../../controllers/eclair/payments");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../shared/authCheck");
|
|
|
|
router.get("/route/", authCheck, PaymentsController.queryPaymentRoute);
|
|
router.get("/:invoice", authCheck, PaymentsController.decodePayment);
|
|
router.post("/getsentinfos", authCheck, PaymentsController.getSentPaymentsInformation);
|
|
router.post("/", authCheck, PaymentsController.postPayment);
|
|
|
|
module.exports = router;
|