2019-03-21 01:22:31 +00:00
|
|
|
pub mod server;
|
2020-01-16 14:39:08 +00:00
|
|
|
|
|
|
|
#[derive(EnumString, ToString, Debug)]
|
|
|
|
pub enum UserOperation {
|
|
|
|
Login,
|
|
|
|
Register,
|
|
|
|
CreateCommunity,
|
|
|
|
CreatePost,
|
|
|
|
ListCommunities,
|
|
|
|
ListCategories,
|
|
|
|
GetPost,
|
|
|
|
GetCommunity,
|
|
|
|
CreateComment,
|
|
|
|
EditComment,
|
|
|
|
SaveComment,
|
|
|
|
CreateCommentLike,
|
|
|
|
GetPosts,
|
|
|
|
CreatePostLike,
|
|
|
|
EditPost,
|
|
|
|
SavePost,
|
|
|
|
EditCommunity,
|
|
|
|
FollowCommunity,
|
|
|
|
GetFollowedCommunities,
|
|
|
|
GetUserDetails,
|
|
|
|
GetReplies,
|
|
|
|
GetUserMentions,
|
|
|
|
EditUserMention,
|
|
|
|
GetModlog,
|
|
|
|
BanFromCommunity,
|
|
|
|
AddModToCommunity,
|
|
|
|
CreateSite,
|
|
|
|
EditSite,
|
|
|
|
GetSite,
|
|
|
|
AddAdmin,
|
|
|
|
BanUser,
|
|
|
|
Search,
|
|
|
|
MarkAllAsRead,
|
|
|
|
SaveUserSettings,
|
|
|
|
TransferCommunity,
|
|
|
|
TransferSite,
|
|
|
|
DeleteAccount,
|
|
|
|
PasswordReset,
|
|
|
|
PasswordChange,
|
2020-01-24 00:17:42 +00:00
|
|
|
CreatePrivateMessage,
|
|
|
|
EditPrivateMessage,
|
|
|
|
GetPrivateMessages,
|
2020-02-01 01:02:20 +00:00
|
|
|
UserJoin,
|
2020-01-16 14:39:08 +00:00
|
|
|
}
|