echo/reportserv/Cargo.toml
Jean 5b023c22a4
Add ReportServ, wired into the audit trail
Any user can REPORT <nick|#channel> <reason>; filing is rate-limited per
reporter. Reports are an event-sourced, federated queue operators review
with LIST / VIEW / CLOSE / DEL. The interconnection: because a filed report
is an event, the engine's audit feed already announces it to the staff
channel and records it in the searchable action log — so OperServ
LOGSEARCH finds a report by any word in it, tying reports into the same
trail as bans, kicks, and everything else. Opt-in (add "reportserv").
2026-07-14 04:02:51 +00:00

8 lines
200 B
TOML

[package]
name = "fedserv-reportserv"
version = "0.0.1"
edition = "2021"
description = "ReportServ: users file abuse reports; operators review them."
[dependencies]
fedserv-api = { path = "../api" }