mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 01:40:29 +01:00
Vulnerability update ng-cli, Fixed issue 31: titles changed to Camelcase, Lookups
This commit is contained in:
parent
0b26636cb1
commit
dbe21683e2
@ -23,9 +23,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
@angular/router
|
||||
MIT
|
||||
|
||||
hammerjs
|
||||
MIT
|
||||
The MIT License (MIT)
|
||||
@ -319,6 +316,9 @@ Apache-2.0
|
||||
|
||||
|
||||
|
||||
@angular/router
|
||||
MIT
|
||||
|
||||
@angular/common
|
||||
MIT
|
||||
|
||||
|
@ -8,5 +8,5 @@
|
||||
<link rel="stylesheet" href="styles.6acb6bfec10bb1e126bd.css"></head>
|
||||
<body>
|
||||
<rtl-app></rtl-app>
|
||||
<script type="text/javascript" src="runtime.ec2944dd8b20ec099bf3.js"></script><script type="text/javascript" src="polyfills.418928a701f2040ada02.js"></script><script type="text/javascript" src="main.2a2dfd93fb3a453f3c70.js"></script></body>
|
||||
<script type="text/javascript" src="runtime.ec2944dd8b20ec099bf3.js"></script><script type="text/javascript" src="polyfills.418928a701f2040ada02.js"></script><script type="text/javascript" src="main.9a2b7813254adf201c15.js"></script></body>
|
||||
</html>
|
||||
|
File diff suppressed because one or more lines are too long
1
angular/main.9a2b7813254adf201c15.js
Normal file
1
angular/main.9a2b7813254adf201c15.js
Normal file
File diff suppressed because one or more lines are too long
@ -9,14 +9,14 @@ var options = {};
|
||||
var file_path = path.normalize(__dirname) + '/RTL.conf';
|
||||
|
||||
var defaultConfig = {
|
||||
authentication: {
|
||||
Authentication: {
|
||||
lndServerUrl:'https://localhost:8080/v1',
|
||||
macroonPath:'',
|
||||
nodeAuthType:'DEFAULT',
|
||||
lndConfigPath:'',
|
||||
rtlPass:''
|
||||
},
|
||||
settings: {
|
||||
Settings: {
|
||||
flgSidenavOpened:true,
|
||||
flgSidenavPinned:true,
|
||||
menu:'Vertical',
|
||||
|
@ -55,6 +55,7 @@ exports.getGraphInfo = (req, res, next) => {
|
||||
|
||||
exports.getGraphNode = (req, res, next) => {
|
||||
options.url = common.lnd_server_url + '/graph/node/' + req.params.pubKey;
|
||||
console.log(`Node Information url: ` + options.url);
|
||||
request(options).then((body) => {
|
||||
console.log(`Node Information Received: ${JSON.stringify(body)}`);
|
||||
if(undefined === body || body.error) {
|
||||
@ -75,6 +76,7 @@ exports.getGraphNode = (req, res, next) => {
|
||||
|
||||
exports.getGraphEdge = (req, res, next) => {
|
||||
options.url = common.lnd_server_url + '/graph/edge/' + req.params.chanid;
|
||||
console.log(`Edge Information url: ` + options.url);
|
||||
request(options).then((body) => {
|
||||
console.log(`Edge Information Received: ${JSON.stringify(body)}`);
|
||||
if(undefined === body || body.error) {
|
||||
|
9265
package-lock.json
generated
9265
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
33
package.json
33
package.json
@ -1,7 +1,17 @@
|
||||
{
|
||||
"name": "rtl",
|
||||
"version": "0.1.7-alpha",
|
||||
"version": "0.1.10-alpha",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng build --prod && ng serve",
|
||||
"serve": "ng serve",
|
||||
"prebuild": "node ./prebuild",
|
||||
"build": "ng build --prod --base-href /rtl/",
|
||||
"test": "ng test",
|
||||
"lint": "ng lint",
|
||||
"e2e": "ng e2e"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^7.0.0",
|
||||
@ -37,5 +47,26 @@
|
||||
"tslib": "^1.9.0",
|
||||
"upper-case": "^1.1.3",
|
||||
"zone.js": "~0.8.26"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^0.12.1",
|
||||
"@angular/cli": "~7.1.4",
|
||||
"@angular/compiler-cli": "^7.0.0",
|
||||
"@angular/language-service": "^7.0.0",
|
||||
"@types/jasmine": "~2.8.8",
|
||||
"@types/jasminewd2": "~2.0.3",
|
||||
"@types/node": "^8.9.5",
|
||||
"codelyzer": "~4.3.0",
|
||||
"jasmine-core": "~2.99.1",
|
||||
"jasmine-spec-reporter": "~4.2.1",
|
||||
"karma": "~3.0.0",
|
||||
"karma-chrome-launcher": "~2.2.0",
|
||||
"karma-coverage-istanbul-reporter": "~2.0.1",
|
||||
"karma-jasmine": "~1.1.2",
|
||||
"karma-jasmine-html-reporter": "^0.2.2",
|
||||
"protractor": "~5.4.0",
|
||||
"ts-node": "~7.0.0",
|
||||
"tslint": "~5.11.0",
|
||||
"typescript": "~3.1.3"
|
||||
}
|
||||
}
|
||||
|
@ -6,6 +6,6 @@ const authCheck = require("./authCheck");
|
||||
router.get("/", authCheck, graphController.getDescribeGraph);
|
||||
router.get("/info", authCheck, graphController.getGraphInfo);
|
||||
router.get("/node/:pubKey", authCheck, graphController.getGraphNode);
|
||||
router.get("/edge/:chanid", authCheck, graphController.getGraphNode);
|
||||
router.get("/edge/:chanid", authCheck, graphController.getGraphEdge);
|
||||
|
||||
module.exports = router;
|
||||
|
Loading…
Reference in New Issue
Block a user