From 77cb7bfb9b3cbbdef92ee32fbd5a6518f5129888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 19 Nov 2019 08:52:02 +0100 Subject: [PATCH] Move systemtags to general settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- apps/systemtags/lib/Settings/Admin.php | 2 +- apps/systemtags/tests/Settings/AdminTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/systemtags/lib/Settings/Admin.php b/apps/systemtags/lib/Settings/Admin.php index 2d892f17f1..30ff403084 100644 --- a/apps/systemtags/lib/Settings/Admin.php +++ b/apps/systemtags/lib/Settings/Admin.php @@ -40,7 +40,7 @@ class Admin implements ISettings { * @return string the section ID, e.g. 'sharing' */ public function getSection() { - return 'workflow'; + return 'server'; } /** diff --git a/apps/systemtags/tests/Settings/AdminTest.php b/apps/systemtags/tests/Settings/AdminTest.php index 8b0472f2e9..6e23ab5f7b 100644 --- a/apps/systemtags/tests/Settings/AdminTest.php +++ b/apps/systemtags/tests/Settings/AdminTest.php @@ -44,7 +44,7 @@ class AdminTest extends TestCase { } public function testGetSection() { - $this->assertSame('workflow', $this->admin->getSection()); + $this->assertSame('server', $this->admin->getSection()); } public function testGetPriority() {