mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-18 07:53:32 +01:00
Merge pull request #143 from mprasil/update_revision_fix
Actually update the revision date for user struct, not just in DB
This commit is contained in:
commit
0fa48a749f
1 changed files with 2 additions and 1 deletions
|
@ -155,12 +155,13 @@ impl User {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn update_revision(&mut self, conn: &DbConn) -> QueryResult<()> {
|
pub fn update_revision(&mut self, conn: &DbConn) -> QueryResult<()> {
|
||||||
|
self.updated_at = Utc::now().naive_utc();
|
||||||
diesel::update(
|
diesel::update(
|
||||||
users::table.filter(
|
users::table.filter(
|
||||||
users::uuid.eq(&self.uuid)
|
users::uuid.eq(&self.uuid)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.set(users::updated_at.eq(Utc::now().naive_utc()))
|
.set(users::updated_at.eq(&self.updated_at))
|
||||||
.execute(&**conn).and(Ok(()))
|
.execute(&**conn).and(Ok(()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue