Skip to content

Commit

Permalink
fix: add filter to only show apps someone owns or has access to
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepanshKhurana committed May 14, 2024
1 parent 82ec63a commit 7ea901f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/logic/api_utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ get_app_list <- function(
req_perform() %>%
resp_body_string() %>%
fromJSON() %>%
filter(app_mode %in% app_mode_filter)
filter(
app_mode %in% app_mode_filter,
app_role == "owner"
)
}
}

Expand Down

0 comments on commit 7ea901f

Please sign in to comment.