Skip to content

Commit

Permalink
add cts_user to UserKindEnum
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik Sidnev committed Oct 29, 2019
1 parent fbe26bb commit 7c3da42
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 23 deletions.
1 change: 1 addition & 0 deletions botx/models/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class SystemEventsEnum(str, Enum):
class UserKindEnum(str, Enum):
bot: str = "botx"
user: str = "user"
cts_user: str = "cts_user"


class CommandTypeEnum(str, Enum):
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.12.4

* Add `cts_user` value to `UserKindEnum`.

## 0.12.3

* Fix docs about removed `HandlesCollector.regex_handler`.
Expand Down
64 changes: 42 additions & 22 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "botx"
version = "0.12.3"
version = "0.12.4"
description = "A little python library for building bots for Express"

authors = ["Sidnev Nikolay <nsidnev@ccsteam.ru>"]
Expand Down

0 comments on commit 7c3da42

Please sign in to comment.