Add a task to check for updates periodically

It must be enabled and configured by the admin.

Refs: #990
This commit is contained in:
eikek
2021-08-19 22:24:35 +02:00
parent 90421599ea
commit 5d33b3841a
10 changed files with 459 additions and 4 deletions

View File

@ -21,6 +21,9 @@ import scodec.bits.ByteVector
object Implicits {
implicit val accountIdReader: ConfigReader[AccountId] =
ConfigReader[String].emap(reason(AccountId.parse))
implicit val pathReader: ConfigReader[Path] =
ConfigReader[JPath].map(Path.fromNioPath)