allow for deleting all tags on a snippet

This commit is contained in:
Travis Shears 2026-03-12 08:16:41 +01:00
parent 9c0b8bef3c
commit aeefd4a157
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
5 changed files with 10 additions and 6 deletions

View file

@ -0,0 +1,23 @@
meta {
name: get_snippet
type: http
seq: 5
}
get {
url: {{host}}/api/snippet-by-slug?slug=bruno-test
body: none
auth: none
}
params:query {
slug: bruno-test
}
body:json {
{
"title": "Test Snippet",
"markdown": "## Cool Snippet\ndoes a cool thing",
"tags": ["git", "jj"]
}
}