blob: 26f68c5986bbf7e760a8ce9804dfe31aabb6fbff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
########
Settings
########
Use :class:`~gitlab.objects.ApplicationSettings` objects to manipulate Gitlab
settings. The :attr:`gitlab.Gitlab.settings` manager object provides helper
functions.
Examples
--------
Get the settings:
.. literalinclude:: settings.py
:start-after: # get
:end-before: # end get
Update the settings:
.. literalinclude:: settings.py
:start-after: # update
:end-before: # end update
|