Allow to specify document lanugage with the request

This commit is contained in:
Eike Kettner
2020-11-23 14:31:58 +01:00
parent 470471dff6
commit 5fe532001b
6 changed files with 39 additions and 9 deletions

View File

@ -35,7 +35,9 @@ case class ScanMailboxArgs(
// set a list of tags to apply to new item
tags: Option[List[String]],
// a glob filter for the mail subject
subjectFilter: Option[Glob]
subjectFilter: Option[Glob],
// the language for extraction and analysis
language: Option[Language]
)
object ScanMailboxArgs {