In bookmarks.api.__init__ (or maybe bookmarks.api.endpoints, if a planned refactor has occurred), several API endpoint paths support a bookmark id or a note id. These are expected to be UUIDs, but the code currently allows them to just be strings. We should use a UUIDConverter (werkzeug PathConverter) to enforce this expectation.
In
bookmarks.api.__init__
(or maybe bookmarks.api.endpoints, if a planned refactor has occurred), several API endpoint paths support a bookmark id or a note id. These are expected to be UUIDs, but the code currently allows them to just be strings. We should use a UUIDConverter (werkzeug PathConverter) to enforce this expectation.