summaryrefslogtreecommitdiff
path: root/docs/gl_objects/appearance.rst
blob: 0c0526817ae3ce3ed9a6e861e2375ed18b04deed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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()