get_stream: Rename include_all_active to include_all.

We keep around the old `include_all_active` parameter for backwards
compatibility.
Web frontend doesn't use this API and thus there were no changes needed
there.
This commit is contained in:
Shubham Padia
2025-02-24 21:20:55 +00:00
committed by Tim Abbott
parent 6dde44cf37
commit ce031c4b52
8 changed files with 52 additions and 17 deletions

View File

@@ -827,7 +827,7 @@ def get_user_groups(client: Client) -> int:
def test_user_not_authorized_error(nonadmin_client: Client) -> None:
result = nonadmin_client.get_streams(include_all_active=True)
result = nonadmin_client.get_streams(include_all=True)
assert_error_response(result)
validate_against_openapi_schema(result, "/rest-error-handling", "post", "400")