diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-01-25 19:47:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 19:47:03 +0100 |
commit | fac0874002cbb12fbacfb5fad28732c9c20d2e53 (patch) | |
tree | d4e1ccf0a94d769cdab7ad93b3fcc18a7cd20e24 | |
parent | e61a0f2a1be030d28e8cb8fea9d703b7a34c12b8 (diff) | |
parent | 49eb3ca79172905bf49bab1486ecb91c593ea1d7 (diff) | |
download | gitlab-fac0874002cbb12fbacfb5fad28732c9c20d2e53.tar.gz |
Merge pull request #1250 from JacobHenner/feature/add-minimal-access
feat: Add MINIMAL_ACCESS constant
-rw-r--r-- | gitlab/const.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/const.py b/gitlab/const.py index 0d2f421..bdd3d73 100644 --- a/gitlab/const.py +++ b/gitlab/const.py @@ -16,6 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. NO_ACCESS = 0 +MINIMAL_ACCESS = 5 GUEST_ACCESS = 10 REPORTER_ACCESS = 20 DEVELOPER_ACCESS = 30 |