Content warning

This commit is contained in:
2023-07-06 22:01:09 +01:00
parent 13f788a311
commit 13980b454f
8 changed files with 168 additions and 3 deletions

View File

@ -71,7 +71,7 @@ public class NostrController : Controller
var pubkey = GetPubKey();
if (string.IsNullOrEmpty(pubkey)) return Unauthorized();
await _streamManager.PatchEvent(pubkey, req.Title, req.Summary, req.Image, req.Tags);
await _streamManager.PatchEvent(pubkey, req.Title, req.Summary, req.Image, req.Tags, req.ContentWarning);
return Accepted();
}