Add notification type "follow request"

This commit is contained in:
jhwgh1968 2023-01-08 03:29:52 +00:00 committed by Scott Boggs
parent 9fd1b29521
commit 83e02464af
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,9 @@ pub enum NotificationType {
Favourite,
/// Someone followed the application client.
Follow,
/// Someone asked to followed the application client when follow requests must be approved.
#[serde(rename = "follow_request")]
FollowRequest,
/// A poll the application client previously voted in has ended.
Poll,
}