Remove defalut auth:api middleware

This commit is contained in:
Mohamed Said 2016-08-21 01:01:52 +02:00
parent 268953862f
commit c0b95238c9
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ protected function mapWebRoutes()
protected function mapApiRoutes()
{
Route::group([
'middleware' => ['api', 'auth:api'],
'middleware' => ['api'],
'namespace' => $this->namespace,
'prefix' => 'api',
], function ($router) {