Vulnerability update ng-cli, Fixed issue 31: titles changed to Camelcase, Lookups

pull/47/head
ShahanaFarooqui 5 years ago
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. SOFTWARE.
@angular/router
MIT
hammerjs hammerjs
MIT MIT
The MIT License (MIT) The MIT License (MIT)
@ -319,6 +316,9 @@ Apache-2.0
@angular/router
MIT
@angular/common @angular/common
MIT MIT

@ -8,5 +8,5 @@
<link rel="stylesheet" href="styles.6acb6bfec10bb1e126bd.css"></head> <link rel="stylesheet" href="styles.6acb6bfec10bb1e126bd.css"></head>
<body> <body>
<rtl-app></rtl-app> <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> </html>

File diff suppressed because one or more lines are too long

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 file_path = path.normalize(__dirname) + '/RTL.conf';
var defaultConfig = { var defaultConfig = {
authentication: { Authentication: {
lndServerUrl:'https://localhost:8080/v1', lndServerUrl:'https://localhost:8080/v1',
macroonPath:'', macroonPath:'',
nodeAuthType:'DEFAULT', nodeAuthType:'DEFAULT',
lndConfigPath:'', lndConfigPath:'',
rtlPass:'' rtlPass:''
}, },
settings: { Settings: {
flgSidenavOpened:true, flgSidenavOpened:true,
flgSidenavPinned:true, flgSidenavPinned:true,
menu:'Vertical', menu:'Vertical',

@ -55,6 +55,7 @@ exports.getGraphInfo = (req, res, next) => {
exports.getGraphNode = (req, res, next) => { exports.getGraphNode = (req, res, next) => {
options.url = common.lnd_server_url + '/graph/node/' + req.params.pubKey; options.url = common.lnd_server_url + '/graph/node/' + req.params.pubKey;
console.log(`Node Information url: ` + options.url);
request(options).then((body) => { request(options).then((body) => {
console.log(`Node Information Received: ${JSON.stringify(body)}`); console.log(`Node Information Received: ${JSON.stringify(body)}`);
if(undefined === body || body.error) { if(undefined === body || body.error) {
@ -75,6 +76,7 @@ exports.getGraphNode = (req, res, next) => {
exports.getGraphEdge = (req, res, next) => { exports.getGraphEdge = (req, res, next) => {
options.url = common.lnd_server_url + '/graph/edge/' + req.params.chanid; options.url = common.lnd_server_url + '/graph/edge/' + req.params.chanid;
console.log(`Edge Information url: ` + options.url);
request(options).then((body) => { request(options).then((body) => {
console.log(`Edge Information Received: ${JSON.stringify(body)}`); console.log(`Edge Information Received: ${JSON.stringify(body)}`);
if(undefined === body || body.error) { if(undefined === body || body.error) {

9367
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,7 +1,17 @@
{ {
"name": "rtl", "name": "rtl",
"version": "0.1.7-alpha", "version": "0.1.10-alpha",
"license": "MIT", "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, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^7.0.0", "@angular/animations": "^7.0.0",
@ -37,5 +47,26 @@
"tslib": "^1.9.0", "tslib": "^1.9.0",
"upper-case": "^1.1.3", "upper-case": "^1.1.3",
"zone.js": "~0.8.26" "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("/", authCheck, graphController.getDescribeGraph);
router.get("/info", authCheck, graphController.getGraphInfo); router.get("/info", authCheck, graphController.getGraphInfo);
router.get("/node/:pubKey", authCheck, graphController.getGraphNode); router.get("/node/:pubKey", authCheck, graphController.getGraphNode);
router.get("/edge/:chanid", authCheck, graphController.getGraphNode); router.get("/edge/:chanid", authCheck, graphController.getGraphEdge);
module.exports = router; module.exports = router;

Loading…
Cancel
Save