@boxyhq/saml-jackson 0.2.1-beta.152 → 0.2.1-beta.154

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boxyhq/saml-jackson",
3
- "version": "0.2.1-beta.152",
3
+ "version": "0.2.1-beta.154",
4
4
  "license": "Apache 2.0",
5
5
  "description": "SAML 2.0 service",
6
6
  "main": "src/index.js",
package/src/db/sql/sql.js CHANGED
@@ -1,3 +1,5 @@
1
+ /*eslint no-constant-condition: ["error", { "checkLoops": false }]*/
2
+
1
3
  require('reflect-metadata');
2
4
  const typeorm = require('typeorm');
3
5
  const JacksonStore = require('./model/JacksonStore.js');
@@ -99,10 +101,6 @@ class Sql {
99
101
  });
100
102
  }
101
103
 
102
- if (res && res.store) {
103
- return JSON.parse(res.store.value);
104
- }
105
-
106
104
  return ret;
107
105
  }
108
106