2021-03-02 12:41:48 +00:00
|
|
|
use crate::{schema::site, DbUrl};
|
2020-12-21 13:38:34 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Clone, Serialize)]
|
|
|
|
#[table_name = "site"]
|
|
|
|
pub struct Site {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub enable_downvotes: bool,
|
|
|
|
pub open_registration: bool,
|
|
|
|
pub enable_nsfw: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<DbUrl>,
|
|
|
|
pub banner: Option<DbUrl>,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset)]
|
|
|
|
#[table_name = "site"]
|
|
|
|
pub struct SiteForm {
|
|
|
|
pub name: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub enable_downvotes: bool,
|
|
|
|
pub open_registration: bool,
|
|
|
|
pub enable_nsfw: bool,
|
|
|
|
// when you want to null out a column, you have to send Some(None)), since sending None means you just don't want to update that column.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<Option<DbUrl>>,
|
|
|
|
pub banner: Option<Option<DbUrl>>,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|