mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
5107c300eb
2FA Fix
11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
import * as exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { forwardingHistory } from '../../controllers/lnd/switch.js';
|
|
|
|
const router = Router();
|
|
|
|
router.post('/', isAuthenticated, forwardingHistory);
|
|
|
|
export default router;
|