summaryrefslogtreecommitdiff
path: root/docs/gl_objects
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2020-01-21 18:46:27 +0100
committerMax Wittig <max.wittig95@gmail.com>2020-01-22 21:19:21 +0100
commit4c4ac5ca1e5cabc4ea4b12734a7b091bc4c224b5 (patch)
tree76f64ea79d1349b904c3eb1e16ff92b770c7ae74 /docs/gl_objects
parentafdc43f401e20550ed181d4b87829739791d2ee3 (diff)
downloadgitlab-feat/appearance.tar.gz
feat: add appearance APIfeat/appearance
Diffstat (limited to 'docs/gl_objects')
-rw-r--r--docs/gl_objects/appearance.rst26
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/gl_objects/appearance.rst b/docs/gl_objects/appearance.rst
new file mode 100644
index 0000000..0c05268
--- /dev/null
+++ b/docs/gl_objects/appearance.rst
@@ -0,0 +1,26 @@
+##########
+Appearance
+##########
+
+Reference
+---------
+
+* v4 API:
+
+ + :class:`gitlab.v4.objects.ApplicationAppearance`
+ + :class:`gitlab.v4.objects.ApplicationAppearanceManager`
+ + :attr:`gitlab.Gitlab.appearance`
+
+* GitLab API: https://docs.gitlab.com/ce/api/appearance.html
+
+Examples
+--------
+
+Get the appearance::
+
+ appearance = gl.appearance.get()
+
+Update the appearance::
+
+ appearance.title = "Test"
+ appearance.save()