Users open tickets with REQUEST (or HELPME); the queue is event-sourced and, because a request is an event, the audit feed announces it to staff and records it in the searchable log — so OperServ LOGSEARCH finds a ticket by any word, the same trail as reports. A user can CANCEL their own open ticket. Operators work the queue: LIST [ALL], VIEW, TAKE (claim), NEXT (claim the oldest unassigned), CLOSE. Filing is rate-limited. Opt-in. That completes the six third-party modules — all interconnected: they share the account/channel/oper identity, the event-sourced store, and the one audit/incident trail.
8 lines
207 B
TOML
8 lines
207 B
TOML
[package]
|
|
name = "fedserv-helpserv"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
description = "HelpServ: a help-desk queue — users ask, operators take and answer."
|
|
|
|
[dependencies]
|
|
fedserv-api = { path = "../api" }
|