Invalidate current logins on account deletion. Fixes #1602 (#1603)

pull/1626/head
Dessalines 3 years ago committed by GitHub
parent f196f05f20
commit ab2b8df1cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -237,7 +237,10 @@ impl Person_ for Person {
// Set the local user info to none
diesel::update(local_user::table.filter(local_user::person_id.eq(person_id)))
.set((local_user::email.eq::<Option<String>>(None),))
.set((
local_user::email.eq::<Option<String>>(None),
local_user::validator_time.eq(naive_now()),
))
.execute(conn)?;
diesel::update(person.find(person_id))

Loading…
Cancel
Save