diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 0141f4e8..5f54e5cb 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -35,7 +35,6 @@ - [No Merge Policy](./triagebot/no-merge.md) - [Nominate](./triagebot/nominate.md) - [Note](./triagebot/note.md) - - [Notifications](./triagebot/notifications.md) - [Pinging](./triagebot/pinging.md) - [Rendered link](./triagebot/rendered-link.md) - [Requesting Prioritization](./triagebot/requesting-prioritization.md) diff --git a/src/triagebot/notifications.md b/src/triagebot/notifications.md deleted file mode 100644 index cfc78558..00000000 --- a/src/triagebot/notifications.md +++ /dev/null @@ -1,49 +0,0 @@ -# Notifications - -The notifications system helps a user keep track of GitHub notifications. - -## Usage - -Each registered team member has a notifications page at: - -`https://triage.rust-lang.org/notifications?user=` - -Whenever you are mentioned on GitHub with a direct mention (`@user`) or via a team mention (`@rust-lang/libs`) anywhere in the rust-lang organization, this will add an entry to the notifications list. - -The notifications list can also be edited via Zulip by [private-messaging triagebot](zulip-commands.md#direct-message-commands). -Any Rust organization member can edit their notifications page, or pages of other Rust organization team members. -To do so, the editor must have a `zulip-id` listed in their `people/username.toml` file in the [team repository](https://github.com/rust-lang/team/). -The bot will tell you which ID to use when talking to it for the first time; please `r? @Mark-Simulacrum` on PRs adding Zulip IDs. - -The following commands are supported: - - * `acknowledge ` (or short form `ack `) - * `acknowledge ` (or short form `ack `) - -These both acknowledge (and remove) a notification from the list. - - * `acknowledge all` or `acknowledge *` (or short form `ack all` or `ack *`) - -This acknowledges and removes all notifications. - - * `add ` - -This adds a new notification to the list. - - * `move ` - -This moves the notification at index `from` to the index `to`. - - * `meta ` - -This adds some text as a sub-bullet to the notification at `idx`. If the metadata is empty, the text is removed. - -## Configuration - -There is no configuration for this feature. - -## Implementation - -See [`src/handlers/notification.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/src/handlers/notification.rs), -[`src/notification_listing.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/src/notification_listing.rs), and -[`src/db/notifications.rs`](https://github.com/rust-lang/triagebot/blob/HEAD/src/db/notifications.rs). diff --git a/src/triagebot/zulip-commands.md b/src/triagebot/zulip-commands.md index c7b6fbc2..d764775d 100644 --- a/src/triagebot/zulip-commands.md +++ b/src/triagebot/zulip-commands.md @@ -19,7 +19,6 @@ You can send these commands as a direct message to the [triagebot][triagebot-dm] - `team-stats `: show the review workqueue statistics of all members of the given team in the context of a given repository (i.e. considering that repository's `triagebot.toml`) - Reviewer workqueue commands, which are documented [here](review-queue-tracking.md#usage). -- Notification commands, which are documented [here](notifications.md#usage). You can use the `--help` flag or a `help` subcommand for any of these commands to find out more about their parameters.