You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why the request is POST instead of GET if the endpoint is used for fetching the data from server? POST request should be used only when creating a new resource and when the id is not known: http://restcookbook.com/HTTP%20Methods/put-vs-post/
quiznator/server/api/v1/course-state/index.js
Line 7 in 8928adc
Is the /state/elements-of-ai endpoint working as intended? When I checked the request using developer toolbar, the body of response is empty which consequently crashes the parsing of request. The corresponding fix to client is here: https://github.com/rage/elements-of-ai-material/compare/features/course-state-fix?expand=1
Why the request is POST instead of GET if the endpoint is used for fetching the data from server? POST request should be used only when creating a new resource and when the id is not known: http://restcookbook.com/HTTP%20Methods/put-vs-post/
@tulir @mipyykko @nygrenh