apiPatchNote updates a note via the API
(t *testing.T, env testEnv, user database.User, noteUUID, payload, message string)
| 205 | |
| 206 | // apiPatchNote updates a note via the API |
| 207 | func apiPatchNote(t *testing.T, env testEnv, user database.User, noteUUID, payload, message string) { |
| 208 | doHTTPReq(t, env, "PATCH", fmt.Sprintf("/v3/notes/%s", noteUUID), payload, message, user) |
| 209 | } |
| 210 | |
| 211 | // apiDeleteNote deletes a note via the API |
| 212 | func apiDeleteNote(t *testing.T, env testEnv, user database.User, noteUUID, message string) { |