Compare commits

...

3 commits

Author SHA1 Message Date
Nutomic 83086639da
Merge 486ca89219 into cf426493e1 2024-04-25 11:54:05 -04:00
SleeplessOne1917 486ca89219
Merge branch 'main' into registration-show-nsfw 2024-04-11 22:31:11 +00:00
Felix Ableitner 457789e1c9 On registration set show_nsfw based on site.content_warning 2024-04-11 16:16:18 +02:00
2 changed files with 7 additions and 2 deletions

View file

@ -40,7 +40,7 @@ pub struct Register {
pub username: String,
pub password: Sensitive<String>,
pub password_verify: Sensitive<String>,
pub show_nsfw: bool,
pub show_nsfw: Option<bool>,
/// email is mandatory if email verification is enabled on the server
pub email: Option<Sensitive<String>>,
/// The UUID of the captcha item.

View file

@ -142,12 +142,17 @@ pub async fn register(
.map(|lang_str| lang_str.split('-').next().unwrap_or_default().to_string())
.collect();
// Show nsfw content if param is true, or if content_warning exists
let show_nsfw = data
.show_nsfw
.unwrap_or(site_view.site.content_warning.is_some());
// Create the local user
let local_user_form = LocalUserInsertForm::builder()
.person_id(inserted_person.id)
.email(data.email.as_deref().map(str::to_lowercase))
.password_encrypted(data.password.to_string())
.show_nsfw(Some(data.show_nsfw))
.show_nsfw(Some(show_nsfw))
.accepted_application(accepted_application)
.default_listing_type(Some(local_site.default_post_listing_type))
.post_listing_mode(Some(local_site.default_post_listing_mode))