Skip to content

Commit

Permalink
Switch inverted 'shared' and 'public' in collection describe
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliGautier committed Oct 28, 2024
1 parent 5ef974f commit 5ad464a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arlas/cli/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ def metadata_collection(arlas: str, collection: str) -> list[list[str]]:
table.append(["timestamp path", d.get("params", {}).get("timestamp_path", "")])
table.append(["display name", d.get("params", {}).get("display_names", {}).get("collection", "")])
table.append(["owner", d.get("params", {}).get("organisations", {}).get("owner", "")])
table.append(["is public", str(d.get("params", {}).get("organisations", {}).get("shared", []))])
table.append(["organisations", d.get("params", {}).get("organisations", {}).get("public", False)])
table.append(["is public", d.get("params", {}).get("organisations", {}).get("public", False)])
table.append(["organisations", str(d.get("params", {}).get("organisations", {}).get("shared", []))])
return table

def describe_index(arlas: str, index: str) -> list[list[str]]:
Expand Down

0 comments on commit 5ad464a

Please sign in to comment.