mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
Make data to index more flexible and extensible
This commit is contained in:
@ -15,6 +15,9 @@ case class Ident(id: String) {
|
||||
|
||||
def nonEmpty: Boolean =
|
||||
!isEmpty
|
||||
|
||||
def / (next: Ident): Ident =
|
||||
new Ident(id + "/" + next.id)
|
||||
}
|
||||
|
||||
object Ident {
|
||||
|
Reference in New Issue
Block a user