Skip to content

Commit

Permalink
Admin 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Jan 3, 2021
1 parent 6e76456 commit f35dffc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="1.7.1"></a>
# [1.7.1](https://github.com/flextype-plugins/admin) (2021-01-03)

### Bug Fixes

* **routes** fix routes for Api

<a name="1.7.0"></a>
# [1.7.0](https://github.com/flextype-plugins/admin) (2021-01-03)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Admin",
"version": "1.7.0",
"version": "1.7.1",
"description": "Admin theme for Flextype",
"homepage": "https://flextype.org",
"author": "Sergey Romanenko",
Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Admin
version: 1.7.0
version: 1.7.1
description: Admin Panel plugin for Flextype.
icon: fab fa-fort-awesome
author:
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
flextype()->post('/tools/cache-all', ToolsController::class . ':clearCacheAllProcess')->setName('admin.tools.clearCacheAllProcess');

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

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

0 comments on commit f35dffc

Please sign in to comment.