@tomei/sso 0.45.0 → 0.45.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 -0
- package/dist/src/components/group/group.js.map +1 -1
- package/dist/src/models/group.entity.d.ts +2 -0
- package/dist/src/models/group.entity.js +5 -0
- package/dist/src/models/group.entity.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/group/group.ts +1 -0
- package/src/models/group.entity.ts +4 -0
package/package.json
CHANGED
@@ -15,6 +15,7 @@ import UserGroupModel from './user-group.entity';
|
|
15
15
|
import GroupPrivilegeModel from './group-privilege.entity';
|
16
16
|
import GroupObjectPrivilegeModel from './group-object-privilege.entity';
|
17
17
|
import GroupSystemAccessModel from './group-system-access.entity';
|
18
|
+
import GroupReportingUserModel from './group-reporting-user.entity';
|
18
19
|
|
19
20
|
@Table({
|
20
21
|
tableName: 'sso_Group',
|
@@ -120,4 +121,7 @@ export default class GroupModel extends Model {
|
|
120
121
|
|
121
122
|
@HasMany(() => GroupSystemAccessModel)
|
122
123
|
GroupSystemAccesses: GroupSystemAccessModel[];
|
124
|
+
|
125
|
+
@HasMany(() => GroupReportingUserModel)
|
126
|
+
GroupReportingUsers: GroupReportingUserModel[];
|
123
127
|
}
|