diff options
author | Lucas Zampieri <lzampier@redhat.com> | 2022-09-22 16:09:47 -0300 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2022-09-26 21:19:14 +0200 |
commit | 88693ff2d6f4eecf3c79d017df52738886e2d636 (patch) | |
tree | e1c65e4c58ab52df5dac135b673f6a19d64cc3bc /gitlab/exceptions.py | |
parent | 1714d0a980afdb648d203751dedf95ee95ac326e (diff) | |
download | gitlab-88693ff2d6f4eecf3c79d017df52738886e2d636.tar.gz |
feat: Add reset_approvals api
Added the newly added reset_approvals merge request api.
Signed-off-by: Lucas Zampieri <lzampier@redhat.com>
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r-- | gitlab/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index 633de5b..613e9a0 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -205,6 +205,10 @@ class GitlabMRRebaseError(GitlabOperationError): pass +class GitlabMRResetApprovalError(GitlabOperationError): + pass + + class GitlabMRClosedError(GitlabOperationError): pass |