Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #971 split socket core logic and main files | OpenGnSys Support Team | 2020-06-24 | 1 | -0/+2 |
| | | | | Extract socket core and main from ogAdmServer file. | ||||
* | #980 coding style cleanup | OpenGnSys Support Team | 2020-06-24 | 1 | -10/+11 |
| | | | | | * Curly braces after function definition * use _dbi_ infix for function name | ||||
* | #980 Add GET /scopes REST request | Roberto Hueso Gómez | 2020-06-24 | 1 | -0/+190 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch implements HTTP GET /scopes request which returns the scopes hierarchy: Request: HTTP GET /scopes Response: 200 OK { "scope": [ { "name": "Center 1", "type": "center", "id": 1, "scope": [ { "name": "Room 1", "type": "room", "id": 1, "scope": [ { "name": "Computer 1", "type": "computer", "id": 1, "scope": [] }, { "name": "Computer 3", "type": "computer", "id": 2, "scope": [] } ] } ] } ] } | ||||
* | #971 split into smaller file | OpenGnSys Support Team | 2020-06-18 | 1 | -0/+3100 |
Split ogAdmServer into several files: * sources/rest.c that implements the server REST API. * sources/client.c that implements the client REST API. * sources/json.c that provides a few JSON helpers. |