diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-08-18 20:31:03 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-19 17:07:29 +0200 |
commit | a4ebef75e94408d922e89896459ee9e43965b5c0 (patch) | |
tree | ece6c41a9e16095ae1945ff05abc631fbe265019 /apps/dashboard/lib | |
parent | 1e61cf617a383763c27175a6c3196e8fdb93bf94 (diff) | |
download | nextcloud-server-a4ebef75e94408d922e89896459ee9e43965b5c0.tar.gz nextcloud-server-a4ebef75e94408d922e89896459ee9e43965b5c0.zip |
Fix const visibility
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dashboard/lib')
-rw-r--r-- | apps/dashboard/lib/Service/BackgroundService.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/dashboard/lib/Service/BackgroundService.php b/apps/dashboard/lib/Service/BackgroundService.php index 4e154dd0170..da0de6117e6 100644 --- a/apps/dashboard/lib/Service/BackgroundService.php +++ b/apps/dashboard/lib/Service/BackgroundService.php @@ -36,10 +36,9 @@ use OCP\IConfig; class BackgroundService { - const THEMING_MODE_LIGHT = 'light'; - const THEMING_MODE_DARK = 'dark'; + public const THEMING_MODE_DARK = 'dark'; - const SHIPPED_BACKGROUNDS = [ + public const SHIPPED_BACKGROUNDS = [ 'anatoly-mikhaltsov-butterfly-wing-scale.jpg' => [ 'attribution' => 'Butterfly', 'attribution_url' => 'https://', |