diff options
| author | Max Wittig <max.wittig95@gmail.com> | 2020-03-01 23:24:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-01 23:24:19 +0100 |
| commit | e5afb554bf4bcc28555bde4030f50558f175a53b (patch) | |
| tree | ce89fa6b548a89e1dcceeef5711f714e7ca1f3b9 /gitlab/__init__.py | |
| parent | fbcc8204a7f69405ec9a9a32b1e26256c7831e10 (diff) | |
| parent | 4e12356d6da58c9ef3d8bf9ae67e8aef8fafac0a (diff) | |
| download | gitlab-e5afb554bf4bcc28555bde4030f50558f175a53b.tar.gz | |
Merge pull request #1034 from filipowm/feat/api-oauth-applications
feat(api): add support for GitLab OAuth Applications using Applications API
Diffstat (limited to 'gitlab/__init__.py')
| -rw-r--r-- | gitlab/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 96a3c13..7ea141e 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -144,6 +144,7 @@ class Gitlab(object): self.features = objects.FeatureManager(self) self.pagesdomains = objects.PagesDomainManager(self) self.user_activities = objects.UserActivitiesManager(self) + self.applications = objects.ApplicationManager(self) def __enter__(self): return self |
