diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-11-06 15:54:36 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-11-07 17:09:32 +0100 |
commit | cef0e622fbe36fc72216241695a24b57c2193c32 (patch) | |
tree | 318ac8c6b95130a50b407dbd26d278a342c5616f /apps/workflowengine/lib | |
parent | 26b5d1fcb1ac1e062fa16f4876f5eacdbe2c9db8 (diff) | |
download | nextcloud-server-cef0e622fbe36fc72216241695a24b57c2193c32.tar.gz nextcloud-server-cef0e622fbe36fc72216241695a24b57c2193c32.zip |
Add Flow app icon
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/workflowengine/lib')
-rw-r--r-- | apps/workflowengine/lib/Settings/Section.php | 3 |
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'); } } |