Merge pull request #85 from owncloud/remove-pdf-viewer-default-app

This commit is contained in:
Lukas Hirt
2020-09-15 17:49:04 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
Change: Remove pdf-viewer from default apps
oCIS-web doesn't have a dedicated pdf-viewer app anymore but instead uses the default browser behaviour for PDFs. We removed pdf-viewer from the set of default apps.
https://github.com/owncloud/ocis-phoenix/pull/85

View File

@@ -173,7 +173,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.StringSliceFlag{
Name: "web-config-app",
Value: cli.NewStringSlice("files", "draw-io", "pdf-viewer", "markdown-editor", "media-viewer"),
Value: cli.NewStringSlice("files", "draw-io", "markdown-editor", "media-viewer"),
Usage: `--web-config-app files [--web-config-app draw-io]`,
EnvVars: []string{"PHOENIX_WEB_CONFIG_APPS"},
},