gitpad/src/api/v1
Aravinth Manivannan 604d887164
feat: REST endpoint to delete comment by ID
DESCRIPTION
    Each comment is uniquely identified by database assigned, serially
    incremented ID. Access controlled REST endpoint is added to delete
    comment by ID.

ERRORS RETURNED
    - Gist doesn't exist: 404 GistNotFound
    - Gist is private and requesting user is not owner or is not visible
      to user: 404 GistNotFound
    - Gist exists and is visible to requesting user but comment doesn't
      exist: 404 CommentNotFound
    - Gist exists and is visible to requesting user is not comment owner
      : 401 UnauthorizedOperation
2022-02-20 01:04:13 +05:30
..
account fix and chore: apply clippy lints and create_gist returns gist public ID 2022-02-19 13:35:03 +05:30
tests fix: lints and run migrations before generating coverage in CI 2022-02-13 00:07:28 +05:30
auth.rs feat: bootstarp gists 2022-02-12 23:48:35 +05:30
gists.rs feat: REST endpoint to delete comment by ID 2022-02-20 01:04:13 +05:30
meta.rs fix and chore: apply clippy lints and create_gist returns gist public ID 2022-02-19 13:35:03 +05:30
mod.rs feat: HTTP JSON endpoint to create new gist 2022-02-15 23:48:05 +05:30
routes.rs feat: REST endpoint to delete comment by ID 2022-02-20 01:04:13 +05:30