@tomei/sso 0.38.7 → 0.38.8

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomei/sso",
3
- "version": "0.38.7",
3
+ "version": "0.38.8",
4
4
  "description": "Tomei SSO Package",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -167,7 +167,8 @@ export class Group extends TreeNodeBase<Group> {
167
167
  }
168
168
 
169
169
  if (this.parent) {
170
- this._Path = (await this.parent.getPath(dbTransaction)) + '/' + this.Name;
170
+ this._Path =
171
+ (await this.parent.getPath(dbTransaction)) + '/' + this.GroupCode;
171
172
  return this._Path;
172
173
  }
173
174
  this._Path = this.GroupCode;