diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-07-31 16:52:46 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-07-31 16:52:46 +0200 | 
| commit | 0c651f11920350a4aa96aa24f8fe15b28390aed2 (patch) | |
| tree | 724e5e79d6c6000077cd0c33c669c32475ed069f /server/src/routes/ui/account | |
| parent | e6e424833315a6c0d04c7706d539f57e1b1df0f7 (diff) | |
| download | jellything-0c651f11920350a4aa96aa24f8fe15b28390aed2.tar jellything-0c651f11920350a4aa96aa24f8fe15b28390aed2.tar.bz2 jellything-0c651f11920350a4aa96aa24f8fe15b28390aed2.tar.zst | |
update remuxer for new schema
Diffstat (limited to 'server/src/routes/ui/account')
| -rw-r--r-- | server/src/routes/ui/account/settings.rs | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/server/src/routes/ui/account/settings.rs b/server/src/routes/ui/account/settings.rs index e196b35..59b10b7 100644 --- a/server/src/routes/ui/account/settings.rs +++ b/server/src/routes/ui/account/settings.rs @@ -3,11 +3,6 @@      which is licensed under the GNU Affero General Public License (version 3); see /COPYING.      Copyright (C) 2023 metamuffin <metamuffin.org>  */ -use std::ops::Range; -use rocket::{ -    form::{self, validate::len, Contextual, Form}, -    get, post, FromForm, State, -};  use super::{format_form_error, hash_password};  use crate::{      database::Database, @@ -18,6 +13,11 @@ use crate::{      },      uri,  }; +use rocket::{ +    form::{self, validate::len, Contextual, Form}, +    get, post, FromForm, State, +}; +use std::ops::Range;  #[derive(FromForm)]  pub struct SettingsForm { | 
