implemented the new "buggy attachment" flag for conferences

This commit is contained in:
2026-02-21 15:10:47 -07:00
parent cf161a28ee
commit 94593d3637
7 changed files with 67 additions and 8 deletions
+7 -3
View File
@@ -27,11 +27,15 @@ import (
* amctxt - The associated AmContext.
* command - The type of rendering to be done. Known values are:
* "bytes" - Output "data" as a byte array.
* "redirect" - Treat "data" as a URL to be redirected to and send a 302 Redirect.
* "string" - Output "data" as a string.
* "template" - Treat "data" as a template name, and output that template.
* "error" - Output the error rendering page.
* "framed" - Treat "data" as an inner template name, and output that template rendered
* within the outer "frame.jet" template.
* "ipban" - Output the IP address ban rendering page.
* "nocontent" - Output a 204 No Content response.
* "redirect" - Treat "data" as a URL to be redirected to and send a 302 Redirect.
* "stream" - Treat "data" as an io.Reader and use it to stream data.
* "string" - Output "data" as a string.
* "template" - Treat "data" as a template name, and output that template.
* data - The data to be output, as determined by the command.
* Returns:
* Standard Go error status.