2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/controllers/lnd/lndConfSettings.js
Shahana Farooqui ab54c44b73 Incomplete lazy load 8
Incomplete lazy load 8
2019-09-01 13:01:38 -04:00

15 lines
330 B
JavaScript

var fs = require('fs');
exports.getLNDSettings = (req, res, next) => {
fs.readFile(req.headers.filepath, function(err, data) {
if (err) {
res.status(500).json({
message: "Reading Config File Failed!",
error: err
});
} else {
res.status(200).json(data.toString('utf8'));
}
});
};