summaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/lib/Settings/Section.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2019-11-09 11:24:42 +0100
committerGitHub <noreply@github.com>2019-11-09 11:24:42 +0100
commitb38b6103090b7619fe0a10d85cba430daf66d45d (patch)
tree486405296d7136bc33c29d0194968ce896f1cfed /apps/workflowengine/lib/Settings/Section.php
parenteb9f53441fc0cacbaa91869bb923148315ef9d6a (diff)
parentcef0e622fbe36fc72216241695a24b57c2193c32 (diff)
downloadnextcloud-server-b38b6103090b7619fe0a10d85cba430daf66d45d.tar.gz
nextcloud-server-b38b6103090b7619fe0a10d85cba430daf66d45d.zip
Merge pull request #17837 from nextcloud/design/flow-icon
Add Flow app icon
Diffstat (limited to 'apps/workflowengine/lib/Settings/Section.php')
-rw-r--r--apps/workflowengine/lib/Settings/Section.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Settings/Section.php b/apps/workflowengine/lib/Settings/Section.php
index 031e9438d9a..3ec3c22dce0 100644
--- a/apps/workflowengine/lib/Settings/Section.php
+++ b/apps/workflowengine/lib/Settings/Section.php
@@ -23,6 +23,7 @@
namespace OCA\WorkflowEngine\Settings;
+use OCA\WorkflowEngine\AppInfo\Application;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\Settings\IIconSection;
@@ -67,6 +68,6 @@ class Section implements IIconSection {
* {@inheritdoc}
*/
public function getIcon() {
- return $this->url->imagePath('core', 'actions/tag.svg');
+ return $this->url->imagePath(Application::APP_ID, 'app-dark.svg');
}
}