diff options
author | Julius Härtl <jus@bitgrid.net> | 2017-11-07 12:31:23 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-11-07 12:31:23 +0100 |
commit | 00956c00b240789ad29289b9c100c237b1843e1f (patch) | |
tree | b72ecc9a040af0f9041330e72f4a165313287535 /apps/theming/tests | |
parent | 44f9779f9f1b85110d2185ca4396d9b26ab85eec (diff) | |
download | nextcloud-server-00956c00b240789ad29289b9c100c237b1843e1f.tar.gz nextcloud-server-00956c00b240789ad29289b9c100c237b1843e1f.zip |
Theming: expose element color though capabilities API
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/tests')
-rw-r--r-- | apps/theming/tests/CapabilitiesTest.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/tests/CapabilitiesTest.php b/apps/theming/tests/CapabilitiesTest.php index d0422652130..17fc253fa4f 100644 --- a/apps/theming/tests/CapabilitiesTest.php +++ b/apps/theming/tests/CapabilitiesTest.php @@ -71,6 +71,7 @@ class CapabilitiesTest extends TestCase { 'slogan' => 'slogan', 'color' => '#FFFFFF', 'color-text' => '#000000', + 'color-element' => '#555555', 'logo' => 'http://absolute/logo', 'background' => 'http://absolute/background', ]], @@ -80,6 +81,7 @@ class CapabilitiesTest extends TestCase { 'slogan' => 'slogan3', 'color' => '#01e4a0', 'color-text' => '#FFFFFF', + 'color-element' => '#01e4a0', 'logo' => 'http://localhost/logo5', 'background' => 'http://localhost/background6', ]], @@ -89,6 +91,7 @@ class CapabilitiesTest extends TestCase { 'slogan' => 'slogan3', 'color' => '#000000', 'color-text' => '#FFFFFF', + 'color-element' => '#000000', 'logo' => 'http://localhost/logo5', 'background' => '#000000', ]], |