fix small issue in go mod

This commit is contained in:
2023-01-17 09:23:16 +01:00
parent 0c0a9d0496
commit 1b847ea216
2 changed files with 4 additions and 2 deletions

View File

@@ -28,7 +28,9 @@ func NewGroupsManagementService(groupsManagementDial string) (*GroupsManagementS
func (s *ServicesHandler) GetGroupsMap() (groups map[string]storage.Group, err error) {
groups = map[string]storage.Group{}
request := &groupsmanagement.GetGroupsRequest{}
request := &groupsmanagement.GetGroupsRequest{
Namespaces: []string{"parcoursmob_organizations"},
}
resp, err := s.GRPC.GroupsManagement.GetGroups(context.TODO(), request)
if err == nil {
for _, group := range resp.Groups {