backend-plus 2.5.2-betha.5 → 2.5.2-betha.6

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.
@@ -2966,10 +2966,11 @@ begin
2966
2966
  else
2967
2967
  select ${be.config.login.infoFieldList.map(fieldName => db.quoteIdent(fieldName)).join(', ')}
2968
2968
  into ${be.config.login.infoFieldList.map(fieldName => db.quoteIdent('v_'+fieldName)).join(', ')}
2969
+
2969
2970
  from ${(be.config.login.from ?? (
2970
2971
  (be.config.login.schema?be.db.quoteIdent(be.config.login.schema)+'.':'')+
2971
- be.db.quoteIdent(be.config.login.table)))} u left join personas p using (idper)
2972
- where u.${db.quoteIdent(be.config.login.userFieldName)} = p_user;
2972
+ be.db.quoteIdent(be.config.login.table)))}
2973
+ where ${db.quoteIdent(be.config.login.userFieldName)} = p_user;
2973
2974
  ${be.config.login.infoFieldList.map(fieldName => `
2974
2975
  perform set_config('backend_plus._${fieldName}', v_${fieldName}, false);`).join('')}
2975
2976
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backend-plus",
3
3
  "description": "Backend for the anti Pareto rule",
4
- "version": "2.5.2-betha.5",
4
+ "version": "2.5.2-betha.6",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/backend-plus",