Skip to content

Commit d4b30ca

Browse files
authored
Merge pull request #3 from lemondkel/patch-1
Removing API Keys for Security
2 parents 36e792a + f300fd2 commit d4b30ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

routes/checkout.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ var CheckoutModel = require('../models/CheckoutModel');
44

55
const { Iamporter, IamporterError } = require('iamporter');
66
const iamporter = new Iamporter({
7-
apiKey: '1627183331091161',
8-
secret: 'vTZRWGS4n8PzYaUmlXks9WAvaDPsNgQiaPa6w3bTc0tabnwxlRZuNz0XdPq06hjg7unDxyxJz0UKorhK'
7+
apiKey: '',
8+
secret: ''
99
});
1010

1111
router.get('/', function (req, res) {
@@ -81,4 +81,4 @@ router.get('/nomember/search', function (req, res) {
8181
res.render('checkout/search', { checkoutList: checkoutList });
8282
});
8383
});
84-
module.exports = router;
84+
module.exports = router;

0 commit comments

Comments
 (0)