Browse Source

Fix const visibility

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v20.0.0beta1
Julius Härtl 3 years ago
parent
commit
a4ebef75e9
No account linked to committer's email address
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      apps/dashboard/lib/Service/BackgroundService.php

+ 2
- 3
apps/dashboard/lib/Service/BackgroundService.php View File

@@ -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://',

Loading…
Cancel
Save