diff --git a/CHANGELOG.md b/CHANGELOG.md index a4b5c10..f9e2bea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Upcoming... +* New config: 'guest_redirection' (useful for external auth adapters) +* More css classes so the elements can be easily hidden (e.g. add_to_head style) + ## 7.3.5 - 2020-04-18 * Translations added: Polish, Italian diff --git a/configuration_sample.php b/configuration_sample.php index 7ccb9ae..a9c7d01 100644 --- a/configuration_sample.php +++ b/configuration_sample.php @@ -16,6 +16,7 @@ return [ 'default_archive_name' => 'archive.zip', 'editable' => ['.txt', '.css', '.js', '.ts', '.html', '.php'], 'date_format' => 'YY/MM/DD hh:mm:ss', // see: https://momentjs.com/docs/#/displaying/format/ + 'guest_redirection' => '', // useful for external auth adapters ], 'services' => [ diff --git a/docs/configuration/basic.md b/docs/configuration/basic.md index 9e4c0a2..d946eef 100644 --- a/docs/configuration/basic.md +++ b/docs/configuration/basic.md @@ -23,6 +23,7 @@ Note: if you've made a mistake in configuration file (forgot to close a quote?) 'default_archive_name' => 'archive.zip', 'editable' => ['.txt', '.css', '.js', '.ts', '.html', '.php'], 'date_format' => 'YY/MM/DD hh:mm:ss', // see: https://momentjs.com/docs/#/displaying/format/ + 'guest_redirection' => '', // useful for external auth adapters ], ``` diff --git a/frontend/views/Login.vue b/frontend/views/Login.vue index bb70706..01bf51e 100644 --- a/frontend/views/Login.vue +++ b/frontend/views/Login.vue @@ -1,5 +1,5 @@