mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-06 21:45:50 +01:00
Add RepositoryService#updateLastActivityDate().
This commit is contained in:
@@ -104,10 +104,14 @@ trait RepositoryService { self: AccountService =>
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Updates the last activity date of the repository.
|
* Updates the last activity date of the repository.
|
||||||
*/
|
*/
|
||||||
def updateLastActivityDate(userName: String, repositoryName: String): Unit = {
|
def updateLastActivityDate(userName: String, repositoryName: String): Unit = {
|
||||||
|
val q = for {
|
||||||
|
r <- Repositories if (r.userName is userName.bind) && (r.repositoryName is repositoryName.bind)
|
||||||
|
} yield r.lastActivityDate
|
||||||
|
|
||||||
|
q.update(new java.sql.Date(System.currentTimeMillis))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user