Refactor read_flows function to include current user's flows

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-06 14:51:30 -03:00
commit a060b8de18

View file

@ -57,7 +57,11 @@ def read_flows(
try:
auth_settings = settings_service.auth_settings
if auth_settings.AUTO_LOGIN:
flows = session.exec(select(Flow).where(Flow.user_id == None)).all()
flows = session.exec(
select(Flow).where(
Flow.user_id == None | Flow.user_id == current_user.id
)
).all() # noqa
else:
flows = current_user.flows
@ -67,7 +71,7 @@ def read_flows(
try:
example_flows = session.exec(
select(Flow).where(
Flow.user_id == None, Flow.folder == STARTER_FOLDER_NAME
Flow.user_id == None, Flow.folder == STARTER_FOLDER_NAME # noqa
)
).all() # noqa
for example_flow in example_flows: