Files
appks/models/repos/mod.rs
T
zhenyi 9eb77ab98b refactor(models): update data models and remove deprecated IM entities
- Update channel, notification, PR, repo, user, workspace models
- Remove deleted IM models: articles, channel follows, message
  attachments/bookmarks/drafts/edit history/embeds/mentions/pins/
  polls/reactions/threads, saved messages, thread read states
- Add new PR models: review requests, templates
- Add repo release assets model
- Add base_info module for API detail responses
2026-06-10 18:49:37 +08:00

39 lines
1.1 KiB
Rust

pub mod branch_protection_rule;
pub mod repo;
pub mod repo_branches;
pub mod repo_commit_comments;
pub mod repo_commit_statuses;
pub mod repo_deploy_keys;
pub mod repo_fork;
pub mod repo_invitations;
pub mod repo_members;
pub mod repo_push_commit;
pub mod repo_push_lock;
pub mod repo_queries;
pub mod repo_release_assets;
pub mod repo_releases;
pub mod repo_stars;
pub mod repo_stats;
pub mod repo_tags;
pub mod repo_watches;
pub mod repo_webhooks;
pub use branch_protection_rule::BranchProtectionRule;
pub use repo::{Repo, RepoDetail};
pub use repo_branches::RepoBranch;
pub use repo_commit_comments::RepoCommitComment;
pub use repo_commit_statuses::RepoCommitStatus;
pub use repo_deploy_keys::RepoDeployKey;
pub use repo_fork::RepoFork;
pub use repo_invitations::RepoInvitation;
pub use repo_members::RepoMember;
pub use repo_push_commit::RepoPushCommit;
pub use repo_push_lock::RepoPushLock;
pub use repo_release_assets::RepoReleaseAsset;
pub use repo_releases::RepoRelease;
pub use repo_stars::RepoStar;
pub use repo_stats::RepoStats;
pub use repo_tags::RepoTag;
pub use repo_watches::RepoWatch;
pub use repo_webhooks::RepoWebhook;