Groups api does not return groups created after upgrade to 6.3
Created by: pagerbak
The subject pretty much says all there is to say, but here are the results of a select against the database and the output from a curl call against he api.
mysql> select id, name, path, owner_id, created_at from namespaces where type = 'Group';
+----+------------------+------------------+----------+---------------------+
| id | name | path | owner_id | created_at |
+----+------------------+------------------+----------+---------------------+
| 5 | Deployment | deployment | 29 | 2013-05-17 08:00:39 |
| 9 | ERST Common | erst-common | 29 | 2013-05-31 05:56:31 |
| 21 | Virk | virk | 29 | 2013-06-11 11:51:21 |
| 22 | Sector9 | sector9 | 29 | 2013-06-11 13:51:08 |
| 25 | ER Kerne | er-kerne | 29 | 2013-06-12 12:32:05 |
| 26 | DevOps | devops | 29 | 2013-06-14 09:33:02 |
| 30 | erst-grails | erst-grails | 29 | 2013-06-25 07:54:10 |
| 31 | ER3 | er3 | 29 | 2013-06-28 12:44:33 |
| 36 | Samples | samples | 29 | 2013-08-01 11:19:27 |
| 37 | Tid-til | tid-til | 29 | 2013-08-09 08:14:35 |
| 38 | erst-tools | erst-tools | 29 | 2013-08-13 06:19:03 |
| 42 | VirkTaeller | virktaeller | 29 | 2013-09-09 08:25:42 |
| 46 | Person-Service | person-service | 29 | 2013-09-18 08:51:45 |
| 54 | Fodt digitalt | fodt-digitalt | 29 | 2013-09-23 08:09:21 |
| 55 | erst-build-tools | erst-build-tools | 29 | 2013-09-28 05:38:14 |
| 65 | Blanketservice | blanketservice | 29 | 2013-10-24 15:06:37 |
| 66 | Virk CMS | virk-cms | 29 | 2013-10-29 10:25:45 |
| 76 | EBR | ebr | 29 | 2013-11-04 14:03:57 |
| 77 | Regnskab | regnskab | 29 | 2013-11-05 10:14:23 |
| 88 | BetalingsModul | betalingsmodul | 29 | 2013-11-12 13:37:31 |
| 90 | New Test Group | new-test-group | NULL | 2013-12-09 08:50:12 |
+----+------------------+------------------+----------+---------------------+
21 rows in set (0.00 sec)
[{"id":5,"name":"Deployment","path":"deployment","owner_id":29},{"id":9,"name":"ERST Common","path":"erst-common","owner_id":29},{"id":21,"name":"Virk","path":"virk","owner_id":29},{"id":22,"name":"Sector9","path":"sector9","owner_id":29},{"id":25,"name":"ER Kerne","path":"er-kerne","owner_id":29},{"id":26,"name":"DevOps","path":"devops","owner_id":29},{"id":30,"name":"erst-grails","path":"erst-grails","owner_id":29},{"id":31,"name":"ER3","path":"er3","owner_id":29},{"id":36,"name":"Samples","path":"samples","owner_id":29},{"id":37,"name":"Tid-til","path":"tid-til","owner_id":29},{"id":38,"name":"erst-tools","path":"erst-tools","owner_id":29},{"id":42,"name":"VirkTaeller","path":"virktaeller","owner_id":29},{"id":46,"name":"Person-Service","path":"person-service","owner_id":29},{"id":54,"name":"Fodt digitalt","path":"fodt-digitalt","owner_id":29},{"id":55,"name":"erst-build-tools","path":"erst-build-tools","owner_id":29},{"id":65,"name":"Blanketservice","path":"blanketservice","owner_id":29},{"id":66,"name":"Virk CMS","path":"virk-cms","owner_id":29},{"id":76,"name":"EBR","path":"ebr","owner_id":29},{"id":77,"name":"Regnskab","path":"regnskab","owner_id":29},{"id":88,"name":"BetalingsModul","path":"betalingsmodul","owner_id":29}]
Notice that the "New Test Group" is missing.
Updating the owner_id does not help.
Best regards Per Agerbæk