summaryrefslogtreecommitdiff
path: root/docs/gl_objects/settings.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gl_objects/settings.rst')
-rw-r--r--docs/gl_objects/settings.rst26
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/gl_objects/settings.rst b/docs/gl_objects/settings.rst
deleted file mode 100644
index 4accfe0..0000000
--- a/docs/gl_objects/settings.rst
+++ /dev/null
@@ -1,26 +0,0 @@
-########
-Settings
-########
-
-Reference
----------
-
-* v4 API:
-
- + :class:`gitlab.v4.objects.ApplicationSettings`
- + :class:`gitlab.v4.objects.ApplicationSettingsManager`
- + :attr:`gitlab.Gitlab.settings`
-
-* GitLab API: https://docs.gitlab.com/ce/api/settings.html
-
-Examples
---------
-
-Get the settings::
-
- settings = gl.settings.get()
-
-Update the settings::
-
- settings.signin_enabled = False
- settings.save()