Server API - adaptive-learning/flocs GitHub Wiki

All server API calls are of the form api/[app]/[call], e.g. api/tasks/get-ids. You can find them in the apps' urls.py and views.py files, where they should be described in detail. You can also take a look at examples in corresponding test files.

Note: In the past, we tried to put the detailed description of the API in this wiki page, but it often got out of date and also was mostly duplicate of the above mentioned files. Now the description is in docstrings close to the corresponding code. We might try to generate server API documentation from the urls.py and vies.py in the future.