mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
Add support for more generic notification
This is a start to have different kinds of notifications. It is possible to be notified via e-mail, matrix or gotify. It also extends the current "periodic query" for due items by allowing notification over different channels. A "generic periodic query" variant is added as well.
This commit is contained in:
@ -231,10 +231,19 @@ object Dependencies {
|
||||
"org.http4s" %% "http4s-blaze-server" % Http4sVersion
|
||||
)
|
||||
|
||||
val circe = Seq(
|
||||
"io.circe" %% "circe-generic" % CirceVersion,
|
||||
val circeCore = Seq(
|
||||
"io.circe" %% "circe-core" % CirceVersion
|
||||
)
|
||||
val circeParser = Seq(
|
||||
"io.circe" %% "circe-parser" % CirceVersion
|
||||
)
|
||||
val circe =
|
||||
circeCore ++ circeParser ++ Seq(
|
||||
"io.circe" %% "circe-generic" % CirceVersion
|
||||
)
|
||||
val circeGenericExtra = Seq(
|
||||
"io.circe" %% "circe-generic-extras" % CirceVersion
|
||||
)
|
||||
|
||||
// https://github.com/Log4s/log4s;ASL 2.0
|
||||
val loggingApi = Seq(
|
||||
@ -285,6 +294,9 @@ object Dependencies {
|
||||
val yamusca = Seq(
|
||||
"com.github.eikek" %% "yamusca-core" % YamuscaVersion
|
||||
)
|
||||
val yamuscaCirce = Seq(
|
||||
"com.github.eikek" %% "yamusca-circe" % YamuscaVersion
|
||||
)
|
||||
|
||||
val munit = Seq(
|
||||
"org.scalameta" %% "munit" % MUnitVersion,
|
||||
|
Reference in New Issue
Block a user