diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-11-19 08:52:02 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-11-26 22:00:03 +0100 |
commit | 77cb7bfb9b3cbbdef92ee32fbd5a6518f5129888 (patch) | |
tree | fb4c16bdeba1d8911db62ce8bcd5ca0be7794d7b | |
parent | d0579bfb6d534ba99b8b5cae91364257825dfec7 (diff) | |
download | nextcloud-server-77cb7bfb9b3cbbdef92ee32fbd5a6518f5129888.tar.gz nextcloud-server-77cb7bfb9b3cbbdef92ee32fbd5a6518f5129888.zip |
Move systemtags to general settings
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r-- | apps/systemtags/lib/Settings/Admin.php | 2 | ||||
-rw-r--r-- | 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 2d892f17f13..30ff403084d 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 8b0472f2e9e..6e23ab5f7b9 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() { |