Skip to content

Commit c1bb980

Browse files
testing core lib 2.4 changes
1 parent 48a2e23 commit c1bb980

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ workflows:
8282
- "build-dev":
8383
filters:
8484
branches:
85-
only: [dev]
85+
only: [dev, 'feature/m2m-core2.4']
8686
- "build-prod":
8787
filters:
8888
branches:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"remarkable": "^1.7.1",
3737
"sequelize": "^4.21.0",
3838
"superagent": "^3.8.0",
39-
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.3",
39+
"tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.4",
4040
"winston": "^2.2.0"
4141
},
4242
"engines": {

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function start(handlers, notificationServiceHandlers) {
108108
next();
109109
});
110110
if (url !== '/health') {
111-
actions.push(jwtAuth());
111+
actions.push(jwtAuth(config));
112112
actions.push((req, res, next) => {
113113
if (!req.authUser) {
114114
return next(new errors.UnauthorizedError('Authorization failed.'));

0 commit comments

Comments
 (0)