| 1045 | ) |
| 1046 | |
| 1047 | type imlAppModule struct { |
| 1048 | teamService team.ITeamService `autowired:""` |
| 1049 | serviceService service.IServiceService `autowired:""` |
| 1050 | teamMemberService team_member.ITeamMemberService `autowired:""` |
| 1051 | subscribeService subscribe.ISubscribeService `autowired:""` |
| 1052 | authService application_authorization.IAuthorizationService `autowired:""` |
| 1053 | roleService role.IRoleService `autowired:""` |
| 1054 | roleMemberService role.IRoleMemberService `autowired:""` |
| 1055 | transaction store.ITransaction `autowired:""` |
| 1056 | } |
| 1057 | |
| 1058 | func (i *imlAppModule) SearchCanSubscribe(ctx context.Context, serviceId string) ([]*service_dto.SubscribeAppItem, bool, error) { |
| 1059 | apps, err := i.searchMyApps(ctx, "", "") |
nothing calls this directly
no outgoing calls
no test coverage detected