diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-07-02 10:20:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 10:20:43 +0200 |
commit | 3a76d9194cea10e5a4714c18ac453343350b7d84 (patch) | |
tree | 82e7d1c78c6ecb355cd9a569b4cfc2e2fda84582 | |
parent | 12a40cc3bdae6111ed750edb3c3a4ec8dbdaa8ef (diff) | |
parent | dab4d0a1deec6d7158c0e79b9eef20d53c0106f0 (diff) | |
download | gitlab-3a76d9194cea10e5a4714c18ac453343350b7d84.tar.gz |
Merge pull request #1108 from stuartgunter/master
Added NO_ACCESS const
-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 aef4a40..7791a39 100644 --- a/gitlab/const.py +++ b/gitlab/const.py @@ -15,6 +15,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +NO_ACCESS = 0 GUEST_ACCESS = 10 REPORTER_ACCESS = 20 DEVELOPER_ACCESS = 30 |