Skip to content
Snippets Groups Projects
Commit 4fb09c5b authored by Miroslav Prasil's avatar Miroslav Prasil
Browse files

Actually update the revision date for user struct, not just in DB

parent 6fdeeb56
No related branches found
No related tags found
No related merge requests found
...@@ -155,12 +155,13 @@ impl User { ...@@ -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(()))
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment