Skip to content

Commit f35dffc

Browse files
committed
Admin 1.7.1
1 parent 6e76456 commit f35dffc

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="1.7.1"></a>
2+
# [1.7.1](https://github.com/flextype-plugins/admin) (2021-01-03)
3+
4+
### Bug Fixes
5+
6+
* **routes** fix routes for Api
7+
18
<a name="1.7.0"></a>
29
# [1.7.0](https://github.com/flextype-plugins/admin) (2021-01-03)
310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Admin",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "Admin theme for Flextype",
55
"homepage": "https://flextype.org",
66
"author": "Sergey Romanenko",

plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Admin
2-
version: 1.7.0
2+
version: 1.7.1
33
description: Admin Panel plugin for Flextype.
44
icon: fab fa-fort-awesome
55
author:

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
flextype()->post('/tools/cache-all', ToolsController::class . ':clearCacheAllProcess')->setName('admin.tools.clearCacheAllProcess');
6161

6262
// ApiController
63-
flextype()->get('/api', 'ApiController:index')->setName('admin.api.index');
63+
flextype()->get('/api', ApiController::class . ':index')->setName('admin.api.index');
6464

6565
flextype()->get('/api/entries', ApiEntriesController::class . ':index')->setName('admin.api_entries.index');
6666
flextype()->get('/api/entries/add', ApiEntriesController::class . ':add')->setName('admin.api_entries.add');

0 commit comments

Comments
 (0)