3a22c4265d
- Add gen_openapi binary for generating OpenAPI specification - Implement comprehensive pull request API endpoints including core operations - Add pull request reviews, check runs, labels, assignees, and events APIs - Include pull request status and merge strategy management endpoints - Add wiki page CRUD operations with revision history and comparison - Update OpenAPI documentation with Pull Requests and Wiki tags - Modify workspace find function visibility for external access - Integrate new API modules into main OpenAPI router configuration
20 lines
602 B
Rust
20 lines
602 B
Rust
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
use uuid::Uuid;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, sqlx::FromRow, utoipa::ToSchema)]
|
|
pub struct PrReview {
|
|
pub id: Uuid,
|
|
pub pull_request_id: Uuid,
|
|
pub author_id: Uuid,
|
|
pub state: String,
|
|
pub body: Option<String>,
|
|
pub commit_sha: Option<String>,
|
|
pub submitted_at: Option<DateTime<Utc>>,
|
|
pub dismissed_at: Option<DateTime<Utc>>,
|
|
pub dismissed_by: Option<Uuid>,
|
|
pub dismiss_reason: Option<String>,
|
|
pub created_at: DateTime<Utc>,
|
|
pub updated_at: DateTime<Utc>,
|
|
}
|