lemmy_api_common 1.0.0-beta.1

A link aggregator for the fediverse
Documentation
pub use lemmy_db_schema::{
  ReportType,
  newtypes::{CommentReportId, CommunityReportId, PostReportId, PrivateMessageReportId},
  source::{
    comment_report::CommentReport,
    community_report::CommunityReport,
    post_report::PostReport,
    private_message_report::PrivateMessageReport,
  },
};
pub use lemmy_db_views_report_combined::{
  CommentReportView,
  CommunityReportView,
  PostReportView,
  PrivateMessageReportView,
  ReportCombinedView,
  api::{
    CommentReportResponse,
    CommunityReportResponse,
    CreateCommentReport,
    CreateCommunityReport,
    CreatePostReport,
    CreatePrivateMessageReport,
    ListReports,
    PostReportResponse,
    PrivateMessageReportResponse,
    ResolveCommentReport,
    ResolveCommunityReport,
    ResolvePostReport,
    ResolvePrivateMessageReport,
  },
};