corebasic 1.0.15 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/libs/auth.js +1 -1
  2. package/package.json +1 -1
package/libs/auth.js CHANGED
@@ -17,7 +17,7 @@ module.exports.start = (app, successCallback) => {
17
17
  return
18
18
  }
19
19
 
20
- let login = await auth.login(req, res)
20
+ let login = await login(req, res)
21
21
  if (login.mode === 'verify' && login.success) {
22
22
  // let userId = "GET_LOGGED_IN_USER_ID" // login contains userId
23
23
  let tokens = Session.generateAccessToken(login.userId, req.body.clientId)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "corebasic",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {