gitdataai/libs/models/projects/project_member_invitations.rs
2026-04-15 09:08:09 +08:00

33 lines
843 B
Rust

use crate::{DateTimeUtc, ProjectId, UserId};
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};
use super::MemberRole;
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
#[sea_orm(table_name = "project_member_invitations")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i64,
pub project: ProjectId,
pub user: UserId,
pub invited_by: UserId,
pub scope: String,
pub accepted: bool,
pub accepted_at: Option<DateTimeUtc>,
pub rejected: bool,
pub rejected_at: Option<DateTimeUtc>,
pub created_at: DateTimeUtc,
}
impl Model {
pub fn scope_role(&self) -> Result<MemberRole, &'static str> {
self.scope.parse()
}
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {}
impl ActiveModelBehavior for ActiveModel {}