]> 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 8e73cca41b411fb78e1a9a60dd2e8f78d4e69a1d..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,
@@ -27,10 +31,14 @@ pub struct Site {
   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>>,
@@ -54,4 +62,7 @@ pub struct SiteForm {
   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>,
 }