2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/controllers/lndConfSettings.js
ShahanaFarooqui c6f6798882 MultiNode Backend Complete
MultiNode Backend Complete
2019-04-06 20:20:40 -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'));
}
});
};