@tomei/sso 0.59.0 → 0.59.2
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/dist/src/components/group/group.js +1 -1
- package/dist/src/components/group/group.js.map +1 -1
- package/dist/src/components/user-group/user-group.js +1 -0
- package/dist/src/components/user-group/user-group.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/group/group.ts +1 -1
- package/src/components/user-group/user-group.ts +1 -0
package/package.json
CHANGED
@@ -22,7 +22,7 @@ import { User } from '../login-user/user';
|
|
22
22
|
import GroupReportingUserModel from '../../models/group-reporting-user.entity';
|
23
23
|
import GroupModel from '../../models/group.entity';
|
24
24
|
import UserModel from '../../models/user.entity';
|
25
|
-
import { UserGroup } from '
|
25
|
+
import { UserGroup } from '../user-group/user-group';
|
26
26
|
|
27
27
|
export class Group extends TreeNodeBase<Group> {
|
28
28
|
ObjectId: string;
|
@@ -750,6 +750,7 @@ export class UserGroup extends ObjectBase {
|
|
750
750
|
activity.Action = ActionEnum.DELETE;
|
751
751
|
activity.Description = `Delete User Group ${this.UserGroupId}`;
|
752
752
|
activity.EntityType = 'UserGroup';
|
753
|
+
activity.EntityId = this.UserGroupId.toString();
|
753
754
|
activity.EntityValueBefore = JSON.stringify(entityValueBefore);
|
754
755
|
activity.EntityValueAfter = JSON.stringify({});
|
755
756
|
// Call the activity create method with the following parameters:
|