Browse Source
Move admin settings to workflow section
pull/995/head
Joas Schilling
10 years ago
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
3 changed files with
3 additions and
3 deletions
-
apps/systemtags/appinfo/info.xml
-
apps/systemtags/lib/Settings/Admin.php
-
apps/systemtags/tests/Settings/AdminTest.php
|
|
|
@ -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> |
|
|
|
|
|
|
|
@ -39,7 +39,7 @@ class Admin implements ISettings { |
|
|
|
* @return string the section ID, e.g. 'sharing' |
|
|
|
*/ |
|
|
|
public function getSection() { |
|
|
|
return 'additional'; |
|
|
|
return 'workflow'; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
@ -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() { |
|
|
|
|