Skip to content

Commit

Permalink
Merge branch 'feat/workflow-backend' into deploy/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
takatost committed Mar 15, 2024
2 parents fa010ca + d122dac commit 300c2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/console/app/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def get(self, app_model):
parser.add_argument('limit', type=int_range(1, 100), required=False, default=20, location='args')
args = parser.parse_args()

query = db.select(Conversation).where(Conversation.app_id == app_model.id, Conversation.mode == 'chat')
query = db.select(Conversation).where(Conversation.app_id == app_model.id)

if args['keyword']:
query = query.join(
Expand Down

0 comments on commit 300c2b5

Please sign in to comment.