diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-22 08:31:25 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-08-22 08:35:03 +0200 |
commit | d1c9f744e1904a0761a4dfaa4a6137b54984585a (patch) | |
tree | 4ba75c633d0a915e2bb5f2497db33ec1c30beb82 /apps | |
parent | baa91809bd11a78a53c8b39e6b2f73ff41b7f925 (diff) | |
download | nextcloud-server-d1c9f744e1904a0761a4dfaa4a6137b54984585a.tar.gz nextcloud-server-d1c9f744e1904a0761a4dfaa4a6137b54984585a.zip |
Move admin settings to workflow section
Diffstat (limited to 'apps')
-rw-r--r-- | apps/systemtags/appinfo/info.xml | 2 | ||||
-rw-r--r-- | apps/systemtags/lib/Settings/Admin.php | 2 | ||||
-rw-r--r-- | apps/systemtags/tests/Settings/AdminTest.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/systemtags/appinfo/info.xml b/apps/systemtags/appinfo/info.xml index 15b9abed0d4..0a98d7ae680 100644 --- a/apps/systemtags/appinfo/info.xml +++ b/apps/systemtags/appinfo/info.xml @@ -7,7 +7,7 @@ <licence>AGPL</licence> <author>Vincent Petry, Joas Schilling</author> <default_enable/> - <version>1.1.2</version> + <version>1.1.3</version> <dependencies> <owncloud min-version="9.2" max-version="9.2" /> </dependencies> diff --git a/apps/systemtags/lib/Settings/Admin.php b/apps/systemtags/lib/Settings/Admin.php index c8d986414e6..9e21dafed8b 100644 --- a/apps/systemtags/lib/Settings/Admin.php +++ b/apps/systemtags/lib/Settings/Admin.php @@ -39,7 +39,7 @@ class Admin implements ISettings { * @return string the section ID, e.g. 'sharing' */ public function getSection() { - return 'additional'; + return 'workflow'; } /** diff --git a/apps/systemtags/tests/Settings/AdminTest.php b/apps/systemtags/tests/Settings/AdminTest.php index 174fd382159..d768ad86272 100644 --- a/apps/systemtags/tests/Settings/AdminTest.php +++ b/apps/systemtags/tests/Settings/AdminTest.php @@ -43,7 +43,7 @@ class AdminTest extends TestCase { } public function testGetSection() { - $this->assertSame('additional', $this->admin->getSection()); + $this->assertSame('workflow', $this->admin->getSection()); } public function testGetPriority() { |