Skip to content

Commit 78dacbc

Browse files
committed
BugoutJournalEntryContent returns tags and lock state
1 parent 6395a48 commit 78dacbc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

bugout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
__email__ = "engineering@bugout.dev"
99
__license__ = "MIT"
10-
__version__ = "0.2.2"
10+
__version__ = "0.2.3"
1111

1212
__all__ = (
1313
"__author__",

bugout/data.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ class BugoutJournalEntriesRequest(BaseModel):
205205
class BugoutJournalEntryContent(BaseModel):
206206
title: str
207207
content: str
208+
tags: List[str] = Field(default_factory=list)
209+
locked_by: Optional[str] = None
208210

209211

210212
class BugoutJournalEntryTags(BaseModel):

0 commit comments

Comments
 (0)