diff --git a/changelog/unreleased/default-apps-in-example-configs b/changelog/unreleased/default-apps-in-example-configs new file mode 100644 index 00000000000..7b6e7dc86b9 --- /dev/null +++ b/changelog/unreleased/default-apps-in-example-configs @@ -0,0 +1,5 @@ +Change: Sensible default apps in example configs + +We adapted the example configs for oc10 and owncloud so that the files and media-viewer apps are enabled by default. + +https://github.com/owncloud/phoenix/pull/4155 diff --git a/config.json.sample-oc10 b/config.json.sample-oc10 index 37292af9222..41884b3aae9 100644 --- a/config.json.sample-oc10 +++ b/config.json.sample-oc10 @@ -7,7 +7,10 @@ "url": "https://demo.owncloud.com/index.php/apps/oauth2/api/v1/token", "authUrl": "https://demo.owncloud.com/index.php/apps/oauth2/authorize" }, - "apps" : ["files"], + "apps": [ + "files", + "media-viewer" + ], "applications": [ { "title": { diff --git a/config.json.sample-ocis b/config.json.sample-ocis index c95446aacf3..ecf7f1d85c3 100644 --- a/config.json.sample-ocis +++ b/config.json.sample-ocis @@ -14,18 +14,16 @@ }, "apps": [ "files", - "draw-io", - "markdown-editor", "media-viewer" ], "external_apps": [ - { - "id": "accounts", - "path": "https://localhost:9200/accounts.js" - }, { "id": "settings", "path": "https://localhost:9200/settings.js" + }, + { + "id": "accounts", + "path": "https://localhost:9200/accounts.js" } ] }