upub/src/model/config.rs

45 lines
925 B
Rust
Raw Normal View History

use sea_orm::entity::prelude::*;
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
#[sea_orm(table_name = "configs")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: String,
pub accept_follow_requests: bool,
pub show_followers_count: bool,
pub show_following_count: bool,
pub show_followers: bool,
pub show_following: bool,
}
2024-03-23 20:24:29 +01:00
impl Default for Model {
fn default() -> Self {
Model {
id: "".to_string(),
accept_follow_requests: true,
show_following_count: true,
show_following: true,
show_followers_count: true,
show_followers: true,
}
}
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(
belongs_to = "super::user::Entity",
from = "Column::Id",
to = "super::user::Column::Id"
)]
User,
}
impl Related<super::user::Entity> for Entity {
fn to() -> RelationDef {
Relation::User.def()
}
}
impl ActiveModelBehavior for ActiveModel {}