Skip to content

Commit aeeef49

Browse files
committed
docs: Document available app config values
Signed-off-by: Julius Knorr <jus@bitgrid.net>
1 parent 497391c commit aeeef49

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

docs/app_settings.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,16 @@ By default Nextcloud will generate previews of Office files using the Collabora
3535
From a shell running in the Nextcloud root directory, run the following `occ`
3636
command to configure a non-default base URL for eID Easy. For example:
3737

38-
./occ config:app:set --value https://test.eideasy.com richdocuments esignature_base_url
38+
occ config:app:set richdocuments esignature_base_url --type string --value https://test.eideasy.com
39+
40+
### UI mode
41+
42+
Switching between classic and tabbed view is possible as a default, however users can still change this while using Office:
43+
44+
occ config:app:set richdocuments uiDefaults-UIMode --type string --value classic
45+
46+
### Disable local editing
47+
48+
In case no desktop client is used on an instance you may disable the local editing button within office with:
49+
50+
occ config:app:set richdocuments open_local_editor --type string --value no

tests/lib/AppConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function setUp(): void {
2727
$this->config = $this->createMock(IConfig::class);
2828
$this->appManager = $this->createMock(IAppManager::class);
2929
$this->appConfig = $this->createMock(IAppConfig::class);
30-
$this->gsConfig = $this->createMock(IGlobalScaleConfig::class)
30+
$this->gsConfig = $this->createMock(IGlobalScaleConfig::class);
3131

3232
$this->appConfig = new AppConfig($this->config, $this->appConfig, $this->appManager, $this->gsConfig);
3333
}

0 commit comments

Comments
 (0)