]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/source/site.rs
Adding email admins for new applications. Fixes #2271 (#2390)
[lemmy.git] / crates / db_schema / src / source / site.rs
index 25bed1c243b47c91acf686a3245723893110be2d..5260cc2de28c9454ecf5aec00447429af6f8907d 100644 (file)
@@ -1,8 +1,12 @@
-use crate::{newtypes::DbUrl, schema::site};
+use crate::newtypes::DbUrl;
 use serde::{Deserialize, Serialize};
 
-#[derive(Queryable, Identifiable, PartialEq, Debug, Clone, Serialize, Deserialize)]
-#[table_name = "site"]
+#[cfg(feature = "full")]
+use crate::schema::site;
+
+#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
+#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
+#[cfg_attr(feature = "full", diesel(table_name = site))]
 pub struct Site {
   pub id: i32,
   pub name: String,
@@ -25,10 +29,16 @@ pub struct Site {
   pub inbox_url: DbUrl,
   pub private_key: Option<String>,
   pub public_key: String,
+  pub default_theme: String,
+  pub default_post_listing_type: String,
+  pub legal_information: Option<String>,
+  pub application_email_admins: bool,
+  pub hide_modlog_mod_names: bool,
 }
 
-#[derive(Insertable, AsChangeset, Default)]
-#[table_name = "site"]
+#[derive(Default)]
+#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
+#[cfg_attr(feature = "full", diesel(table_name = site))]
 pub struct SiteForm {
   pub name: String,
   pub sidebar: Option<Option<String>>,
@@ -50,4 +60,9 @@ pub struct SiteForm {
   pub inbox_url: Option<DbUrl>,
   pub private_key: Option<Option<String>>,
   pub public_key: Option<String>,
+  pub default_theme: Option<String>,
+  pub default_post_listing_type: Option<String>,
+  pub legal_information: Option<Option<String>>,
+  pub application_email_admins: Option<bool>,
+  pub hide_modlog_mod_names: Option<bool>,
 }