mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-06-09 20:43:53 +00:00
Merge pull request #131 from mprasil/revision_date
Implement update_revision trigger
This commit is contained in:
commit
16056626b0
2 changed files with 15 additions and 1 deletions
|
@ -154,6 +154,16 @@ impl User {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn update_revision(&mut self, conn: &DbConn) -> QueryResult<()> {
|
||||
diesel::update(
|
||||
users::table.filter(
|
||||
users::uuid.eq(&self.uuid)
|
||||
)
|
||||
)
|
||||
.set(users::updated_at.eq(Utc::now().naive_utc()))
|
||||
.execute(&**conn).and(Ok(()))
|
||||
}
|
||||
|
||||
pub fn find_by_mail(mail: &str, conn: &DbConn) -> Option<Self> {
|
||||
let lower_mail = mail.to_lowercase();
|
||||
users::table
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue