administration create group

This commit is contained in:
sbouaram 2023-04-24 05:36:57 -04:00
parent b54961b619
commit d169566cd1
1 changed files with 16 additions and 15 deletions

View File

@ -160,22 +160,23 @@ func (h *ApplicationHandler) AdministrationCreateGroup(w http.ResponseWriter, r
Namespace: "parcoursmob_roles", Namespace: "parcoursmob_roles",
}, },
} }
go func() {
_, err = h.services.GRPC.GroupsManagement.AddGroup(context.TODO(), request_organization) _, err = h.services.GRPC.GroupsManagement.AddGroup(context.TODO(), request_organization)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError) w.WriteHeader(http.StatusInternalServerError)
return return
} }
}()
// Create the admin role for the organization // Create the admin role for the organization
go func() {
_, err = h.services.GRPC.GroupsManagement.AddGroup(context.TODO(), request_role) _, err = h.services.GRPC.GroupsManagement.AddGroup(context.TODO(), request_role)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
w.WriteHeader(http.StatusInternalServerError) w.WriteHeader(http.StatusInternalServerError)
return return
} }
}()
http.Redirect(w, r, fmt.Sprintf("/app/administration/groups/%s", groupid), http.StatusFound) http.Redirect(w, r, fmt.Sprintf("/app/administration/groups/%s", groupid), http.StatusFound)
return return
} }