mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-05 23:19:31 +00:00
Enable post search to other supported post types (#481)
* Enable post search to other supported post types like question, video, and others * Upgrade isort to match pre-commit config
This commit is contained in:
parent
e6f827dd7f
commit
aeba38b8ae
2 changed files with 2 additions and 2 deletions
|
@ -94,7 +94,7 @@ class SearchService:
|
|||
return identity
|
||||
|
||||
# Is it a post?
|
||||
elif type == "note":
|
||||
elif type in [value.lower() for value in Post.Types.values]:
|
||||
# Try and retrieve the post by URI
|
||||
# (we do not trust the JSON we just got - fetch from source!)
|
||||
try:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
-r requirements.txt
|
||||
black==22.10.0
|
||||
flake8==5.0.4
|
||||
isort==5.10.1
|
||||
isort==5.12.0
|
||||
mock~=4.0.3
|
||||
pre-commit~=2.20.0
|
||||
pytest-asyncio~=0.20.2
|
||||
|
|
Loading…
Reference in a new issue