summaryrefslogtreecommitdiffstats
path: root/Documentation/dev-polygerrit.txt
blob: 5621d32ea6a4fc66ed0a2765f8b4354c71180b63 (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
27
28
29
30
31
32
33
34
= PolyGerrit - GUI

== Configuring

By default both GWT and PolyGerrit UI are available to users.

To make PolyGerrit the default UI but keep GWT as a secondary UI:
----
[gerrit]
        ui = POLYGERRIT
----

To disable GWT but not PolyGerrit:
----
[gerrit]
        enableGwtUi = false
        enablePolyGerrit = true
----

To enable GWT but not PolyGerrit:
----
[gerrit]
        enableGwtUi = true
        enablePolyGerrit = false
----

To switch to the PolyGerrit UI you have to add `?polygerrit=1` in the URL.

for example https://gerrit.example.org/?polygerrit=1

To disable PolyGerrit UI, change 1 to 0, which will take you back to GWT UI.


More information can be found in the link:https://gerrit.googlesource.com/gerrit/+/master/polygerrit-ui/[README]