2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-17 15:29:30 +00:00
RTL/controllers/lnd/lndConfSettings.js

15 lines
330 B
JavaScript
Raw Normal View History

2018-10-01 23:11:28 +00:00
var fs = require('fs');
exports.getLNDSettings = (req, res, next) => {
fs.readFile(req.headers.filepath, function(err, data) {
if (err) {
res.status(500).json({
2018-10-05 23:31:39 +00:00
message: "Reading Config File Failed!",
2018-10-01 23:11:28 +00:00
error: err
});
} else {
res.status(200).json(data.toString('utf8'));
}
});
};