From: Morris Jobke Date: Tue, 24 Jan 2017 18:54:32 +0000 (-0600) Subject: Add icon to admin page sidebar for LDAP X-Git-Tag: v12.0.0beta1~635^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e46410e856fdbfc3fb6f5288dee87d16112d5ae8;p=nextcloud-server.git Add icon to admin page sidebar for LDAP * follow up to nextcloud/server#3151 Signed-off-by: Morris Jobke --- diff --git a/apps/user_ldap/img/app-dark.svg b/apps/user_ldap/img/app-dark.svg new file mode 100644 index 00000000000..54939fab4f2 --- /dev/null +++ b/apps/user_ldap/img/app-dark.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/user_ldap/lib/Settings/Section.php b/apps/user_ldap/lib/Settings/Section.php index a4106bacb9e..86d293d3879 100644 --- a/apps/user_ldap/lib/Settings/Section.php +++ b/apps/user_ldap/lib/Settings/Section.php @@ -77,6 +77,6 @@ class Section implements IIconSection { * {@inheritdoc} */ public function getIcon() { - return $this->url->imagePath('user_ldap', 'app.svg'); + return $this->url->imagePath('user_ldap', 'app-dark.svg'); } }