33 lines
843 B
Rust
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 {}
|