Add possibility to share notes
This commit is contained in:
@@ -25,7 +25,12 @@ internal class NoteSearcherImplTest {
|
||||
content: String = "",
|
||||
uuid: UUID = UUID.randomUUID(),
|
||||
): PersistedNote {
|
||||
val note = PersistedNote(NoteMetadata(title, tags), markdown = content, html = "", LocalDateTime.MIN, uuid)
|
||||
val note = PersistedNote(NoteMetadata(title, tags),
|
||||
markdown = content,
|
||||
html = "",
|
||||
LocalDateTime.MIN,
|
||||
uuid,
|
||||
public = false)
|
||||
searcher.indexNote(1, note)
|
||||
return note
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user