Return all project actions, each carrying actionId.
(self)
| 677 | return self.command("project.dataset.list").get("datasets", []) |
| 678 | |
| 679 | def list_actions(self) -> list: |
| 680 | """Return all project actions, each carrying actionId.""" |
| 681 | return self.command("project.action.list").get("actions", []) |
| 682 | |
| 683 | def add_group(self, title: str = "Group", widget_type: int = 0) -> int: |
| 684 | """ |