Embed Notice
HTML Code
Corresponding Notice
- Embed this notice@mint @alex @ne @hj using singular terms is pretty common in db and api design. if you have a list of notes and you index into it, you would expect user[0] to return the user at index 0. if it's users[0] it looks like a nested array structure. similarly with api design, if you're already doing /users/:id then what are you supposed to use if you want to show a list of registered users? you have to use /users/ or rename it /all-users/ or something dumb