Skip to content

Commit 0031d71

Browse files
committed
update copyright notices and license
1 parent ec3ff9c commit 0031d71

File tree

7 files changed

+31
-2
lines changed

7 files changed

+31
-2
lines changed

LICENSE.md renamed to LICENSE

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
Copyright (c) 2013-2015 StrongLoop, Inc.
1+
Copyright (c) IBM Corp. 2014,2016. All Rights Reserved.
2+
Node module: loopback-example-ssl
3+
This project is licensed under the MIT License, full text below.
4+
5+
--------
26

37
MIT license
48

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"scripts": {
77
"lint": "eslint .",
8-
"posttest": "npm run lint"
8+
"posttest": "npm run lint"
99
},
1010
"dependencies": {
1111
"async": "~0.9.0",

server/boot/authentication.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright IBM Corp. 2014. All Rights Reserved.
2+
// Node module: loopback-example-ssl
3+
// This file is licensed under the MIT License.
4+
// License text available at https://opensource.org/licenses/MIT
5+
16
module.exports = function enableAuthentication(server) {
27
// enable authentication
38
server.enableAuth();

server/boot/root.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright IBM Corp. 2014. All Rights Reserved.
2+
// Node module: loopback-example-ssl
3+
// This file is licensed under the MIT License.
4+
// License text available at https://opensource.org/licenses/MIT
5+
16
module.exports = function(server) {
27
// Install a `/` route that returns server status
38
var router = server.loopback.Router();

server/server.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
2+
// Node module: loopback-example-ssl
3+
// This file is licensed under the MIT License.
4+
// License text available at https://opensource.org/licenses/MIT
5+
16
var loopback = require('loopback');
27
var boot = require('loopback-boot');
38

server/ssl-config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
2+
// Node module: loopback-example-ssl
3+
// This file is licensed under the MIT License.
4+
// License text available at https://opensource.org/licenses/MIT
5+
16
var path = require('path');
27
var fs = require('fs');
38

server/test-server.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
2+
// Node module: loopback-example-ssl
3+
// This file is licensed under the MIT License.
4+
// License text available at https://opensource.org/licenses/MIT
5+
16
/**
27
* Run `node import.js` to import the test data into the db.
38
*/

0 commit comments

Comments
 (0)