diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-05-15 18:20:01 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-07-21 15:03:11 -0700 |
commit | 7c71d5db1199164b3fa9958e3c3bc6ec96efc78d (patch) | |
tree | 1b17a6e3467e22187ef0530c9174534e816c3560 /gitlab/v4/cli.py | |
parent | 0549afa6631f21ab98e1f1457607daa03b398185 (diff) | |
download | gitlab-7c71d5db1199164b3fa9958e3c3bc6ec96efc78d.tar.gz |
fix: add `get_all` param (and `--get-all`) to allow passing `all` to API
Diffstat (limited to 'gitlab/v4/cli.py')
-rw-r--r-- | gitlab/v4/cli.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py index b496669..90b6ba6 100644 --- a/gitlab/v4/cli.py +++ b/gitlab/v4/cli.py @@ -240,7 +240,18 @@ def _populate_sub_parser_by_class( sub_parser_action.add_argument("--page", required=False, type=int) sub_parser_action.add_argument("--per-page", required=False, type=int) - sub_parser_action.add_argument("--all", required=False, action="store_true") + sub_parser_action.add_argument( + "--get-all", + required=False, + action="store_true", + help="Return all items from the server, without pagination.", + ) + sub_parser_action.add_argument( + "--all", + required=False, + action="store_true", + help="Deprecated. Use --get-all instead.", + ) if action_name == "delete": if cls._id_attr is not None: |