summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/api-objects.rst1
-rw-r--r--docs/gl_objects/appearance.rst26
2 files changed, 27 insertions, 0 deletions
diff --git a/docs/api-objects.rst b/docs/api-objects.rst
index 4767c48..569435c 100644
--- a/docs/api-objects.rst
+++ b/docs/api-objects.rst
@@ -6,6 +6,7 @@ API examples
:maxdepth: 1
gl_objects/access_requests
+ gl_objects/appearance
gl_objects/emojis
gl_objects/badges
gl_objects/branches
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()