icebreaker-science / backend

The backend (Spring Boot) part of the icebreaker.science application
Apache License 2.0
2 stars 0 forks source link

Single Wikipage Entry Endpoint #28

Closed vordemann closed 4 years ago

vordemann commented 4 years ago

Provide an endpoint that returns a single wiki page by id GET /wiki?id=XYZ

chaoran-chen commented 4 years ago

I would suggest GET /wiki/{id} instead. The GET /wiki should always return a list of entries while GET/PUT/DELETE /wiki/{id} should be used to work on a single entry.