gerrit/Documentation/dev-polygerrit.txt
Kasper Nilsson f496bc6032 Provide a walkthrough for inline edit
Once this change is merged, the rendered markdown can be linked to in
the official GWTUI deprecation announcement.

TODO: find out the way to include this documentation in the final
artifact (release.war)

Bug: Issue 8267
Change-Id: I4a1be9e7eb6512507819658bc124fc993a07e4eb
2018-02-15 21:11:55 +00:00

32 lines
729 B
Plaintext

= PolyGerrit - GUI
[IMPORTANT]
PolyGerrit is still a beta feature. Some features may be missing.
== Configuring
By default both GWT and PolyGerrit UI are available to users.
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]