Hello. I have been following this document, to integrate another code checker into gerrit.
I've looked at some of sample plugin and I've noted that they use many REST API endpoints that are not documented anywhere in REST API documentation for the server. For example buildbucket plugin has this code:
this.plugin.restApi().get(`/changes/${changeId}/jwts`)
and
.get(`/projects/${encodeURIComponent(repo)}/${pluginName}~config`);
I'd like to somehow load plugin configuration from etc/gerrit.config or etc/{plugin}.config.
Thank you.