Skip to content

Commit 95028e5

Browse files
committed
Apply suggestions from code review
1 parent 4927d95 commit 95028e5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

wcfsetup/install/files/acp/templates/labelGroupAdd.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
131131
setup(
132132
document.querySelector('.jsChangeShowOrder'),
133-
'core/labels/groups/{$labelGroup->groupID}/label-show-order'
133+
'core/labels/groups/{$labelGroup->groupID}/labels/show-order'
134134
);
135135
});
136136
</script>

wcfsetup/install/files/lib/system/endpoint/controller/core/labels/groups/ChangeLabelShowOrder.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
2525
* @since 6.2
2626
*/
27-
#[PostRequest('/core/labels/groups/{id:\d+}/label-show-order')]
27+
#[PostRequest('/core/labels/groups/{id:\d+}/labels/show-order')]
2828
final class ChangeLabelShowOrder implements IController
2929
{
3030
public function __invoke(ServerRequestInterface $request, array $variables): ResponseInterface

wcfsetup/install/files/lib/system/endpoint/controller/core/labels/groups/GetLabelShowOrder.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
2323
* @since 6.2
2424
*/
25-
#[GetRequest('/core/labels/groups/{id:\d+}/label-show-order')]
25+
#[GetRequest('/core/labels/groups/{id:\d+}/labels/show-order')]
2626
final class GetLabelShowOrder implements IController
2727
{
2828
public function __invoke(ServerRequestInterface $request, array $variables): ResponseInterface

0 commit comments

Comments
 (0)