Compare commits
No commits in common. "d819462b0d6a3ba912d4845d2f5ae066b746d639" and "fc49e6c9772c8718bec3091cf8f28e68ecd00881" have entirely different histories.
d819462b0d
...
fc49e6c977
@ -226,15 +226,10 @@ async fn send_welcome_mail(
|
||||
}
|
||||
|
||||
#[get("/user/<user>/reset-pw")]
|
||||
async fn resetpw(db: &State<SqlitePool>, admin: AdminUser, user: i32) -> Flash<Redirect> {
|
||||
async fn resetpw(db: &State<SqlitePool>, _admin: AdminUser, user: i32) -> Flash<Redirect> {
|
||||
let user = User::find_by_id(db, user).await;
|
||||
match user {
|
||||
Some(user) => {
|
||||
Log::create(
|
||||
db,
|
||||
format!("{} has resetted the pw for {}", admin.user.name, user.name),
|
||||
)
|
||||
.await;
|
||||
user.reset_pw(db).await;
|
||||
Flash::success(
|
||||
Redirect::to("/admin/user"),
|
||||
|
Loading…
Reference in New Issue
Block a user