@tomei/sso 0.37.2 → 0.37.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/components/login-user/user.js +2 -2
- package/dist/src/components/login-user/user.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/login-user/user.ts +1 -1
- package/src/components/user-group/user-group.ts +1 -0
package/package.json
CHANGED
@@ -33,7 +33,7 @@ import * as speakeasy from 'speakeasy';
|
|
33
33
|
import { LoginStatusEnum } from '../../enum/login-status.enum';
|
34
34
|
import { RedisService } from '../../redis-client/redis.service';
|
35
35
|
import { LoginUser } from './login-user';
|
36
|
-
import { SessionService } from 'session';
|
36
|
+
import { SessionService } from '../../session/session.service';
|
37
37
|
|
38
38
|
export class User extends UserBase {
|
39
39
|
ObjectId: string;
|
@@ -226,6 +226,7 @@ export class UserGroup extends ObjectBase {
|
|
226
226
|
// EntityValueBefore: <stringify of empty object>
|
227
227
|
// EntityValueAfter: EntityValueAfter
|
228
228
|
const activity = new Activity();
|
229
|
+
activity.ActivityId = activity.createId();
|
229
230
|
activity.Action = ActionEnum.ADD;
|
230
231
|
activity.Description = 'Assign user to group.';
|
231
232
|
activity.EntityType = 'UserGroup';
|